Skip to content

Commit 2ac762e

Browse files
committed
Fix plugin not connectin to managed server after it's started #2548
1 parent b12e2a4 commit 2ac762e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ai_diffusion/backend/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ async def start(self, port: int | None = None):
512512
text = decode_pipe_bytes(line).strip()
513513
last_line = text
514514
server_log.info(text)
515-
if text.startswith("To see the GUI go to:"):
515+
if "To see the GUI go to" in text:
516516
self.state = ServerState.running
517517
self.url = text.split("http://")[-1]
518518
break

0 commit comments

Comments
 (0)