From 3466f9070ee8964c1e51cd156726a27d7f23eec5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oswaldo=20Alcal=C3=A1?= <40160237+odarotto@users.noreply.github.com> Date: Mon, 26 Aug 2024 14:41:33 -0400 Subject: [PATCH] fix(attempt.py): removing duplicated call to update() function (#112) --- workflow/lifecycle/attempt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/lifecycle/attempt.py b/workflow/lifecycle/attempt.py index 6d1b82a..f770830 100644 --- a/workflow/lifecycle/attempt.py +++ b/workflow/lifecycle/attempt.py @@ -101,7 +101,7 @@ def work( # * in the execute module. We don't need to set it here. archive.run(work, config) - work.update() + # work.update() status = True except Exception as error: logger.error(error)