You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/codegen/cli/commands/run/run_daemon.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ def run_daemon(session: CodegenSession, function, diff_preview: int | None = Non
46
46
limited_diff="\n".join(diff_lines[:diff_preview])
47
47
48
48
iftruncated:
49
-
limited_diff+="\n\n...\n\n[yellow]diff truncated to {diff_preview} lines, view the full change set on your local file system after using run with `--apply-local`[/yellow]"
49
+
limited_diff+=f"\n\n...\n\n[yellow]diff truncated to {diff_preview} lines[/yellow]"
rich.print(Panel(f"[green]Server started successfully![/green]\nAccess the server at: [bold]http://{_default_host}:{port}[/bold]", box=ROUNDED, title="Codegen Server"))
50
48
# TODO: memory snapshot here
51
-
exceptsubprocess.CalledProcessErrorase:
52
-
rich.print(f"[bold red]Error:[/bold red] Failed to {e.cmd[0]} Docker container")
0 commit comments