Skip to content

Commit

Permalink
disabled update_function_status
Browse files Browse the repository at this point in the history
  • Loading branch information
antbaez9 committed Aug 12, 2024
1 parent f6897ab commit 321a455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distributask/distributask.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def call_function_task(self, func_name: str, args_json: str) -> any:
func = self.registered_functions[func_name]
args = json.loads(args_json)
result = func(**args)
self.update_function_status(self.call_function_task.request.id, "success")
# self.update_function_status(self.call_function_task.request.id, "success")

return result
except Exception as e:
Expand Down

0 comments on commit 321a455

Please sign in to comment.