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 201c4b7 commit e75673cCopy full SHA for e75673c
taskvine/src/bindings/python3/ndcctools/taskvine/task.py
@@ -543,8 +543,8 @@ def set_time_start(self, useconds):
543
# Indicate the maximum running time (in seconds) for a task in a
544
# worker (relative to when the task starts to run). If less than 1, or not
545
# specified, no limit is imposed.
546
- def set_time_max(self, useconds):
547
- return cvine.vine_task_set_time_max(self._task, int(useconds))
+ def set_time_max(self, seconds):
+ return cvine.vine_task_set_time_max(self._task, int(seconds))
548
549
# Indicate the minimum running time (in seconds) for a task in a worker
550
# (relative to when the task starts to run). If less than 1, or not
0 commit comments