Unverified Commit 130a2132 authored by QuanluZhang's avatar QuanluZhang Committed by GitHub
Browse files

fix not-successfully-kill issue (#968)

parent 69b2e9aa
......@@ -347,7 +347,7 @@ class NNIManager implements Manager {
await delay(1000);
}
try {
await cpp.exec(`kill ${this.dispatcherPid}`);
await cpp.exec(`kill -9 ${this.dispatcherPid}`);
} catch (error) {
// this.tunerPid does not exist, do nothing here
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment