Skip to content

Commit

Permalink
crash on bfb crash
Browse files Browse the repository at this point in the history
  • Loading branch information
KShivendu authored Sep 5, 2024
1 parent b10d296 commit ed4f0c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/local/run-bfb-search.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ docker run \
-e "QDRANT_API_KEY=$QDRANT_API_KEY" \
-v "$(pwd)/bfb-search.log:/bfb/search.log" \
${BFB_IMAGE_NAME} \
bash -c "set -e; while true; ${BFB_ENV_VARS} ./bfb ${BFB_PARAMETERS} | tee /bfb/search.log; do sleep 10; done"
bash -c "set -e; while true; do ${BFB_ENV_VARS} ./bfb ${BFB_PARAMETERS} | tee /bfb/search.log; if [ $? -ne 0 ]; then echo \"bfb command crashed. Exiting loop.\"; break; fi; sleep 10; done"

0 comments on commit ed4f0c6

Please sign in to comment.