Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-47679: Constrain to only input survey #34

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Changes from all commits
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
12 changes: 6 additions & 6 deletions prompt-processing/groups.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -654,13 +654,13 @@
"source": [
"phrases = {\n",
" \"unpckMsg\": f'Unpacked message as \" |~ \"{survey}',\n",
" \"prepBtlr\": \"Preparing Butler for visit\",\n",
" \"waitSnap\": \"Waiting for snaps\",\n",
" \"runPipe1\": \"Running pipeline\",\n",
" \"pipeSucc\": \"Main pipeline successfully run\",\n",
" \"prepBtlr\": f'Preparing Butler for visit \" |~ \"{survey}',\n",
" \"waitSnap\": f'Waiting for snaps\" |~ \"{survey}',\n",
" \"runPipe1\": f'Running pipeline\" |~ \"{survey}',\n",
" \"pipeSucc\": f'Main pipeline successfully run\" |~ \"{survey}',\n",
" # There can be more than 1 of this log line per exposure when retry...\n",
" \"outputSa\": \"Pipeline products saved to collection\",\n",
" \"timeout1\": \"Timed out waiting for image after receiving exposures \",\n",
" \"outputSa\": f'Pipeline products saved to collection\" |~ \"{survey}',\n",
" \"timeout1\": f'Timed out waiting for image after receiving exposures',\n",
" \"dbConErr\": f'SSL connection has been closed unexpectedly\" |~ \"Traceback',\n",
" \"brokrErr\" : \"Failed to get metadata: Local: Broker transport failure\",\n",
"}"
Expand Down