From b28d67534b116b16b3bbe7deba9f85e2ffd8038a Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 26 Sep 2012 08:34:54 +0200 Subject: [PATCH] Temporarily disabling procpool for @batchprocess to fix a traceback when building. --- src/commands/default/batchprocess.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/default/batchprocess.py b/src/commands/default/batchprocess.py index d92edf6f0d..f86db6df14 100644 --- a/src/commands/default/batchprocess.py +++ b/src/commands/default/batchprocess.py @@ -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)