diff options
author | Benety Goh <benety@mongodb.com> | 2013-10-29 10:54:23 -0400 |
---|---|---|
committer | Benety Goh <benety@mongodb.com> | 2013-11-26 14:09:02 -0500 |
commit | 0279986672290bac8e323bc0dbfcb006651cc466 (patch) | |
tree | 63cf89a0b10fcd319be9ebfb50f71d01c9630e16 /buildscripts/utils.py | |
parent | 305cd93b4c04b3b5828d1e81516e667d92a1f9e7 (diff) | |
download | mongo-0279986672290bac8e323bc0dbfcb006651cc466.tar.gz |
SERVER-9608 updated shouldKill() to detect and terminate mongod process using same data directory
Diffstat (limited to 'buildscripts/utils.py')
-rw-r--r-- | buildscripts/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/utils.py b/buildscripts/utils.py index a30b9576b76..68273ee69c8 100644 --- a/buildscripts/utils.py +++ b/buildscripts/utils.py @@ -87,7 +87,7 @@ def execsys( args ): def getprocesslist(): raw = "" try: - raw = execsys( "/bin/ps -ax" )[0] + raw = execsys( "/bin/ps axww" )[0] except Exception,e: print( "can't get processlist: " + str( e ) ) |