Skip to content

fix(site): fix agent logs streaming for third party apps #14541

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 3, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix fmt
  • Loading branch information
BrunoQuaresma committed Sep 3, 2024
commit 7e8bd3021de8124564adc6b9f9bae0c736ef1ca1
2 changes: 1 addition & 1 deletion site/src/modules/resources/AgentLogs/useAgentLogs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function useAgentLogs(
// If the agent is off, we don't need to stream logs. This is the only state
// where the Coder API can't receive logs for the agent from third-party
// apps like envbuilder.
if(agentLifeCycleState === "off") {
if (agentLifeCycleState === "off") {
return;
}

Expand Down
Loading