mirror of
https://github.com/evennia/evennia.git
synced 2026-04-06 16:44:08 +02:00
Temporarily disabling procpool for @batchprocess to fix a traceback when building.
This commit is contained in:
parent
b2028511f5
commit
b28d67534b
1 changed files with 2 additions and 2 deletions
|
|
@ -272,7 +272,7 @@ class CmdBatchCommands(MuxCommand):
|
|||
else:
|
||||
caller.msg("Running Batch-command processor - Automatic mode for %s (this might take some time) ..." % python_path)
|
||||
|
||||
if settings.PROCPOOL_ENABLED:
|
||||
if False:#TODO - need to add a procpool solution. settings.PROCPOOL_ENABLED:
|
||||
# run in parallel process
|
||||
def callback(r):
|
||||
caller.msg(" {GBatchfile '%s' applied." % python_path)
|
||||
|
|
@ -366,7 +366,7 @@ class CmdBatchCode(MuxCommand):
|
|||
else:
|
||||
caller.msg("Running Batch-code processor - Automatic mode for %s ..." % python_path)
|
||||
|
||||
if settings.PROCPOOL_ENABLED:
|
||||
if False: #TODO Add procpool solution. settings.PROCPOOL_ENABLED:
|
||||
# run in parallel process
|
||||
def callback(r):
|
||||
caller.msg(" {GBatchfile '%s' applied." % python_path)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue