Bugfix: mprime typos
This commit is contained in:
parent
4990537082
commit
4dc41aec27
1 changed files with 2 additions and 2 deletions
|
|
@ -873,9 +873,9 @@ def start_mprime(working_dir, log_path):
|
|||
return proc_mprime
|
||||
|
||||
|
||||
def stop_mprime(proc):
|
||||
def stop_mprime(proc_mprime):
|
||||
"""Stop mprime gracefully, then forcefully as needed."""
|
||||
proc_mprime.terminate()
|
||||
proc_mprime.terminate()
|
||||
try:
|
||||
proc_mprime.wait(timeout=5)
|
||||
except subprocess.TimeoutExpired:
|
||||
|
|
|
|||
Loading…
Reference in a new issue