Skip to content

Commit 5de2ed9

Browse files
committed
Remove non-blocking join
1 parent bc9c93e commit 5de2ed9

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

galahad/tasks/machine.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -109,19 +109,6 @@ def create_task(self, process):
109109
)[0]
110110

111111

112-
class NonBlockingJoin(Join):
113-
114-
def __call__(self, process, task):
115-
if task.child_task_set.exists():
116-
return tuple()
117-
118-
def create_task(self, process):
119-
return process.task_set.get_or_create(
120-
node_name=self.node_name,
121-
node_type=self.node_type,
122-
)[0]
123-
124-
125112
class Wait:
126113
"""
127114
Wait for a certain amount of time and then continue with the next tasks.

0 commit comments

Comments
 (0)