You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
" print(f\"Too many consecutive errors, giving up\")\n",
212
+
" break\n",
213
+
" continue\n",
214
+
"\n",
215
+
"if status == \"SUCCEEDED\":\n",
194
216
" print(\"Job completed Successfully !\")\n",
195
217
"else:\n",
196
-
" print(\"Job failed !\")\n",
218
+
" print(f\"Job did not succeed. Final status: {status}\")\n",
197
219
"\n",
198
-
"sleep(10) # For avoiding race condition(raycluster gets deleted as soon as notebook execution completes after rayjob submission gets succeeded) and to assert rayjob success status before raycluster gets deleted during test excution\""
" print(f\"Too many consecutive errors, giving up\")\n",
212
+
" break\n",
213
+
" continue\n",
214
+
"\n",
215
+
"if status == \"SUCCEEDED\":\n",
201
216
" print(\"Job completed Successfully !\")\n",
202
217
"else:\n",
203
-
" print(\"Job failed !\")\n",
218
+
" print(f\"Job did not succeed. Final status: {status}\")\n",
204
219
"\n",
205
-
"sleep(10) # For avoiding race condition(raycluster gets deleted as soon as notebook execution completes after rayjob submission gets succeeded) and to assert rayjob success status before raycluster gets deleted during test excution\""
0 commit comments