Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
Fix syntax error in sample data load script (#869)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvkb authored Aug 9, 2022
1 parent f38bc03 commit 6342b25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ _ing-api data port="8001":
-X POST \
-H 'Content-Type: application/json' \
-d '{{ data }}' \
-w "\n" \
'http://localhost:{{ port }}/task'

# Check the health of the ingestion-server
Expand Down
2 changes: 1 addition & 1 deletion load_sample_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ set +e
while true; do
just ingest-upstream "image" "init"
just wait-for-index "image-init"
if [$? -eq 0 ]; then
if [ $? -eq 0 ]; then
break
fi
((c++)) && ((c==3)) && break
Expand Down

0 comments on commit 6342b25

Please sign in to comment.