Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
debugging permutation notebook
  • Loading branch information
hardbyte committed Apr 3, 2020
commit 75f12cac377af2e3c2fd237c52c7db2af7146bc3
2 changes: 1 addition & 1 deletion .azurePipeline/runDockerComposeTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ else
fi

echo "Start type $TYPE"
$commandPrefix -p $PROJECT_NAME up --abort-on-container-exit --exit-code-from $TYPE db minio redis backend worker nginx $TYPE
$commandPrefix -p $PROJECT_NAME up --abort-on-container-exit --exit-code-from $TYPE db db_init minio redis backend worker nginx $TYPE
exit_code=$?
echo "Retrieve the $TYPE tests results."
$commandPrefix -p $PROJECT_NAME ps -q $TYPE | xargs -I@ docker cp @:$CREATED_RESULT_FILE $RESULT_FILE
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/Permutations.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
],
"source": [
"import os, time\n",
"initial_delay = float(os.environ.get(\"INITIAL_DELAY\", \"0.1\"))\n",
"initial_delay = float(os.environ.get(\"INITIAL_DELAY\", \"1\"))\n",
"time.sleep(initial_delay)\n",
"url = os.getenv(\"SERVER\", \"https://anonlink.easd.data61.xyz\")\n",
"print(f'Testing anonlink-entity-service hosted at {url}')"
Expand Down