-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove grpc-plugin storage type (#702)
## Which problem is this PR solving? - Part of jaegertracing/jaeger#4647 ## Description of the changes - Replace `grpc-plugin` with `grpc` where applicable, remove otherwise. ## How was this change tested? - CI --------- Signed-off-by: Yuri Shkuro <[email protected]>
- Loading branch information
1 parent
9da1045
commit ee52c3d
Showing
6 changed files
with
22 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -117,6 +117,7 @@ rebalance | |
reddy | ||
reindex | ||
reindexing | ||
robbert | ||
rolebinding | ||
ryans | ||
shkuro | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
#!/bin/bash | ||
|
||
if ! sort -c project-words.txt; then | ||
echo "project-words.txt is not sorted." | ||
echo "project-words.txt is not sorted." | ||
exit 1 | ||
fi | ||
npm install cspell | ||
npm ci # clean install, do not upgrade dependencies | ||
npm run spellcheck | ||
if [ $? -ne 0 ]; then | ||
echo "Misspelling(s) found." | ||
exit 1 | ||
fi | ||
fi |