Unverified Commit 650a39b7 authored by liuzhe-lz's avatar liuzhe-lz Committed by GitHub
Browse files

fix minor bug (#3434)

parent 4fc34df7
...@@ -351,8 +351,8 @@ class NNIManager implements Manager { ...@@ -351,8 +351,8 @@ class NNIManager implements Manager {
let hasError: boolean = false; let hasError: boolean = false;
try { try {
this.experimentManager.stop(); await this.experimentManager.stop();
this.dataStore.close(); await this.dataStore.close();
await component.get<NNIRestServer>(NNIRestServer).stop(); await component.get<NNIRestServer>(NNIRestServer).stop();
} catch (err) { } catch (err) {
hasError = true; hasError = true;
......
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