Browse Source

fix bug of wrong variable name

tags/v1.1.0
shenghong96 5 years ago
parent
commit
643fd19637
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mindinsight/backend/run.py

+ 1
- 1
mindinsight/backend/run.py View File

@@ -300,7 +300,7 @@ def start():
label = '.' * len(label)
for line in state_result["prompt_message"]:
console.info(line)
if state_result["state"] == ServerStateEnum.FAILED_STATE.value:
if state_result["state"] == ServerStateEnum.FAILED.value:
sys.exit(1)




Loading…
Cancel
Save