Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanglei1949 committed Sep 18, 2023
1 parent 9120281 commit e1cd85b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion flex/interactive/bin/gs_interactive
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,10 @@ function do_remove(){
exit 1
fi
# check graph is running inside docker
check_graph_not_running ${graph_name} || err "Can not remove graph ${graph_name}, since a graph with same nameing running."
if ! check_graph_not_running ${graph_name}; then
err "Can not remove graph ${graph_name}, since a graph with same nameing running!"
exit 1;
fi
. ${HOST_DB_ENV_FILE}
docker_graph_dir="${DATABASE_WORKSPACE}/data/${graph_name}"
### let user confirm to remove the graph
Expand Down

0 comments on commit e1cd85b

Please sign in to comment.