mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
TaskHandler Return task_id if persistent
TaskHandler Return task_id if persistent unit tests passed 645 ran
This commit is contained in:
parent
d0d2a9384f
commit
f445cfb355
1 changed files with 2 additions and 0 deletions
|
|
@ -149,6 +149,8 @@ class TaskHandler(object):
|
|||
callback = self.do_task
|
||||
args = [task_id]
|
||||
kwargs = {}
|
||||
deferLater(reactor, timedelay, callback, *args, **kwargs)
|
||||
return task_id
|
||||
|
||||
return deferLater(reactor, timedelay, callback, *args, **kwargs)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue