We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb424c2 commit 6aa0a6dCopy full SHA for 6aa0a6d
cli/agent.go
@@ -189,10 +189,9 @@ func workspaceAgent() *cobra.Command {
189
// shells so "gitssh" works!
190
"CODER_AGENT_TOKEN": client.SessionToken,
191
},
192
- CoordinatorDialer: client.ListenWorkspaceAgentTailnet,
193
- StatsReporter: client.AgentReportStats,
194
- FetchWorkspaceApps: client.WorkspaceAgentApps,
195
- PostWorkspaceAppHealth: client.PostWorkspaceAgentAppHealth,
+ CoordinatorDialer: client.ListenWorkspaceAgentTailnet,
+ StatsReporter: client.AgentReportStats,
+ WorkspaceAppHealthReporter: agent.NewWorkspaceAppHealthReporter(logger, client),
196
})
197
<-cmd.Context().Done()
198
return closer.Close()
0 commit comments