We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76ab637 commit 1648680Copy full SHA for 1648680
src/message_builder.py
@@ -211,8 +211,9 @@ def is_status_already_completed(status):
211
212
if status == "SUCCEEDED":
213
return True
214
- if status == "FAILED":
215
- return True
+# rerunでの更新を考慮
+# if status == "FAILED":
216
+# return True
217
if status == "CANCELED":
218
219
@@ -225,8 +226,9 @@ def is_status_icon_already_completed(status_icon):
225
226
227
if status_icon == STATE_ICONS["SUCCEEDED"]:
228
- if status_icon == STATE_ICONS["FAILED"]:
229
230
+# if status_icon == STATE_ICONS["FAILED"]:
231
232
if status_icon == STATE_ICONS["CANCELED"]:
233
234
0 commit comments