diff options
Diffstat (limited to 'nova/process.py')
-rw-r--r-- | nova/process.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/nova/process.py b/nova/process.py index 5a5d8cbd2..b3cad894b 100644 --- a/nova/process.py +++ b/nova/process.py @@ -18,9 +18,10 @@ # under the License. """ -Process pool, still buggy right now. +Process pool using twisted threading """ +import logging import StringIO from twisted.internet import defer @@ -127,6 +128,7 @@ def get_process_output(executable, args=None, env=None, path=None, cmd = executable if args: cmd = " ".join([cmd] + args) + logging.debug("Running cmd: %s", cmd) process_handler = BackRelayWithInput( deferred, cmd, |