-
Story
-
Resolution: Unresolved
-
Normal
-
None
-
None
-
3
-
False
-
-
False
-
Konflux
-
-
In packages/backend/internal/handlers/http/webhook_handlers.go There is a check done in this line that may cause issues and cause the client to hang waiting for a response:
resolved, err := h.issueService.ResolveIssuesByScope(c.Request.Context(), "pipelinerun", req.PipelineName, req.Namespace) if err != nil { h.logger.WithError(err).Errorf("failed to resolve issues for pipeline run %s : %v", req.PipelineName, err) return // This returns without sending any HTTP response! }
This should be fixed.