Skip to content

Commit

Permalink
fix restart not asking for new password after reset
Browse files Browse the repository at this point in the history
  • Loading branch information
julianjandeleit committed Apr 29, 2024
1 parent 3f985d6 commit 621bbfd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/usr/local/bin/ai-cli
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ fi
case ${CMD} in
init) # initialize this script for your user
init ;;
start-mlflow) # start mlflow server append "nodb" to start without database backend
start-mlflow) # start mlflow server provide "nodb" to start without database backend
basic_auth "$MLFLOW_VIRTUAL_HOST"
if [ "${@: -1}" = "nodb" ]; then
dc server up -d server_nodb
Expand All @@ -517,8 +517,8 @@ start-mlflow) # start mlflow server append "nodb" to start without database back
stop-mlflow) # stop mlflow server
dc server down ;;
restart-mlflow) # restart mlflow server
dc server down
dc server up -d --force-recreate
ai-cli stop-mlflow
ai-cli start-mlflow
;;
start-proxy) # start nginx reverse proxy
dc proxy up -d --force-recreate
Expand Down

0 comments on commit 621bbfd

Please sign in to comment.