We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent5d0489b commit778184dCopy full SHA for 778184d
coderd/workspaceagents.go
@@ -2100,7 +2100,7 @@ func (api *API) workspaceAgentsExternalAuth(rw http.ResponseWriter, r *http.Requ
2100
httpapi.Write(ctx,rw,http.StatusOK,resp)
2101
}
2102
2103
-func (api*API)workspaceAgentsExternalAuthListen(rw http.ResponseWriter,ctx context.Context,externalAuthConfig*externalauth.Config,workspace database.Workspace) {
+func (api*API)workspaceAgentsExternalAuthListen(ctx context.Context,rw http.ResponseWriter,externalAuthConfig*externalauth.Config,workspace database.Workspace) {
2104
// Since we're ticking frequently and this sign-in operation is rare,
2105
// we are OK with polling to avoid the complexity of pubsub.
2106
ticker,done:=api.NewTicker(time.Second)