mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
fix: watch workspace agent logs (#17209)
This commit is contained in:
+4
-1
@@ -223,7 +223,10 @@ export const watchWorkspaceAgentLogs = (
|
||||
agentId: string,
|
||||
{ after, onMessage, onDone, onError }: WatchWorkspaceAgentLogsOptions,
|
||||
) => {
|
||||
const searchParams = new URLSearchParams({ after: after.toString() });
|
||||
const searchParams = new URLSearchParams({
|
||||
follow: "true",
|
||||
after: after.toString(),
|
||||
});
|
||||
|
||||
/**
|
||||
* WebSocket compression in Safari (confirmed in 16.5) is broken when
|
||||
|
||||
Reference in New Issue
Block a user