diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-04-03 08:39:32 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-04-03 08:39:32 +0000 |
| commit | 5aa6a15ffdf68a8dbe12eb0fdfff93deafb9da10 (patch) | |
| tree | 31c6a3617b2bb10814dca4b9db5a5a46ce2ba3c5 /internal/api/server.go | |
| parent | 2461fcf03ed2a49c7ac4aaed77fdde1aa01177c4 (diff) | |
fix: remove drain-lock circuit breaker that halted all executions after 3 consecutive failures
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/api/server.go')
| -rw-r--r-- | internal/api/server.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/api/server.go b/internal/api/server.go index be944a3..aec1439 100644 --- a/internal/api/server.go +++ b/internal/api/server.go @@ -127,7 +127,6 @@ func (s *Server) routes() { s.mux.HandleFunc("GET /api/executions", s.handleListRecentExecutions) s.mux.HandleFunc("GET /api/stats", s.handleGetDashboardStats) s.mux.HandleFunc("GET /api/agents/status", s.handleGetAgentStatus) - s.mux.HandleFunc("POST /api/pool/agents/{agent}/undrain", s.handleUndrainAgent) s.mux.HandleFunc("GET /api/executions/{id}", s.handleGetExecution) s.mux.HandleFunc("GET /api/executions/{id}/log", s.handleGetExecutionLog) s.mux.HandleFunc("GET /api/tasks/{id}/logs/stream", s.handleStreamTaskLogs) |
