Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Ying Chen committed Mar 15, 2024
1 parent 9408bc6 commit 4707e41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/installer/windows/scripts/start_pfs.vbs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DIM objshell
set objshell = wscript.createobject("wscript.shell")
cmd = WScript.Arguments(0)
iReturn = objshell.run(cmd, 0, true)
iReturn = objshell.run(cmd, 0, false)
1 change: 1 addition & 0 deletions src/promptflow/promptflow/_sdk/_service/entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ def validate_port(port, force_start):
app.logger.info(message)
print(f"{message}. You're feel free to input CTRL+C or close the terminal to exit.")
waitress.serve(app, host="127.0.0.1", port=port, threads=PF_SERVICE_WORKER_NUM)
entry(["show-status"])
else:
# Start a pfs process using detach mode. It will start a new process and create a new app. So we use environment
# variable to pass the debug mode, since it will inherit parent process environment variable.
Expand Down

0 comments on commit 4707e41

Please sign in to comment.