feat(kiro): enhance Kiro executor with retry, deduplication and event filtering

This commit is contained in:
Ravens2121
2025-12-12 01:59:06 +08:00
parent ef0edbfe69
commit 40e7f066e4
2 changed files with 80 additions and 8 deletions
+6
View File
@@ -349,6 +349,12 @@ func (s *Server) setupRoutes() {
},
})
})
// Event logging endpoint - handles Claude Code telemetry requests
// Returns 200 OK to prevent 404 errors in logs
s.engine.POST("/api/event_logging/batch", func(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"status": "ok"})
})
s.engine.POST("/v1internal:method", geminiCLIHandlers.CLIHandler)
// OAuth callback endpoints (reuse main server port)