frostfs-sdk-go/syncTree.sh
Denis Kirillov c376bb35bb
All checks were successful
DCO / DCO (pull_request) Successful in 2m17s
Tests and linters / Tests (1.22) (pull_request) Successful in 2m20s
Tests and linters / Tests (1.21) (pull_request) Successful in 2m36s
Tests and linters / Lint (pull_request) Successful in 4m30s
[#239] pool/tree: Update tree service client
Update tree service to fix split tree problem.
Tree intermediate nodes can be duplicated so we must handle this.

Signed-off-by: Denis Kirillov <d.kirillov@yadro.com>
2024-07-16 12:53:24 +03:00

14 lines
679 B
Bash
Executable file

#!/bin/bash
REVISION="fd6fed909c515e2cc148307ac2932d05e5557d94"
echo "tree service revision ${REVISION}"
# regexp below find all link to source code files which end with ".pb.go" and retrieve the file names
# we use `[^.]*` as non greedy workaround for `.*`
FILES=$(curl -s https://git.frostfs.info/fyrchik/frostfs-node/src/commit/${REVISION}/pkg/services/tree | sed -n "s,.*\"/fyrchik/frostfs-node/src/commit/${REVISION}/pkg/services/tree/\([^.]*\.pb\.go\)\".*,\1,p")
for file in $FILES; do
echo "sync '$file' in tree service"
curl -s "https://git.frostfs.info/fyrchik/frostfs-node/raw/commit/${REVISION}/pkg/services/tree/${file}" -o "./pool/tree/service/${file}"
done