diff options
author | Vishvananda Ishaya <vishvananda@yahoo.com> | 2010-09-11 08:16:16 -0700 |
---|---|---|
committer | Vishvananda Ishaya <vishvananda@yahoo.com> | 2010-09-11 08:16:16 -0700 |
commit | 603c8f8c87c1b08d58ac0b240c1ad70a928e113d (patch) | |
tree | f4401a44754558434dca12c22edf54035130d5a4 /nova/process.py | |
parent | fc5e1c6f0bee14fdb85ad138324062ceaa598eee (diff) | |
parent | e21c310ced6992cf2eb33b372cd4e5e69a79d140 (diff) | |
download | nova-603c8f8c87c1b08d58ac0b240c1ad70a928e113d.tar.gz nova-603c8f8c87c1b08d58ac0b240c1ad70a928e113d.tar.xz nova-603c8f8c87c1b08d58ac0b240c1ad70a928e113d.zip |
merged trunk
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, |