syncTree: Update file filter to 'frostfs'

Signed-off-by: Artem Tataurov <a.tataurov@yadro.com>
This commit is contained in:
Artem Tataurov 2023-04-20 18:58:29 +03:00
parent 1cbc7f323f
commit 3da2d40fa8
2 changed files with 3 additions and 2 deletions

View file

@ -21,6 +21,7 @@ This document outlines major changes between releases.
- Support dump metrics descriptions (#80)
### Changed
- Update syncTree.sh due to recent renaming (#73)
- Update neo-go to v0.101.0 (#14)
- Update viper to v1.15.0 (#14)
- Using multiple servers require only one healthy (TrueCloudLab#12)

View file

@ -2,7 +2,7 @@
mkdir -p internal/frostfs/services/tree 2>/dev/null
REVISION="feaa9eace7098c343598bf08fb50746a1e8d2deb"
REVISION="f07d4158f50ed5c7f44cc0bc224c3d03edf27f3b"
echo "tree service revision ${REVISION}"
@ -11,7 +11,7 @@ echo "tree service revision ${REVISION}"
FILES=$(curl -s https://git.frostfs.info/TrueCloudLab/frostfs-node/src/commit/${REVISION}/pkg/services/tree | sed -n "s,.*\"/TrueCloudLab/frostfs-node/src/commit/${REVISION}/pkg/services/tree/\([^.]*\.pb\.go\)\".*,\1,p")
for file in $FILES; do
if [[ $file == *"neofs"* ]]; then
if [[ $file == *"frostfs"* ]]; then
echo "skip '$file'"
continue
else