mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
avoid error message on Windows builds
This commit is contained in:
parent
18c952897b
commit
b85ad82930
@ -31,7 +31,10 @@ def shouldKill( c ):
|
||||
def killprocs( signal="" ):
|
||||
|
||||
killed = 0
|
||||
|
||||
|
||||
if sys.platform == 'win32':
|
||||
return killed
|
||||
|
||||
l = utils.getprocesslist()
|
||||
print( "num procs:" + str( len( l ) ) )
|
||||
if len(l) == 0:
|
||||
|
Loading…
Reference in New Issue
Block a user