mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2026-04-15 01:41:56 +00:00
Recover panic on closed channel
Related to #2480 Signed-off-by: Niall Sheridan <nsheridan@squarespace.com>
This commit is contained in:
@@ -79,6 +79,9 @@ func EventStreamSSE(c *gin.Context) {
|
||||
go func() {
|
||||
// TODO remove this from global config
|
||||
Config.Services.Pubsub.Subscribe(ctx, "topic/events", func(m pubsub.Message) {
|
||||
defer func() {
|
||||
recover() // fix #2480
|
||||
}()
|
||||
name := m.Labels["repo"]
|
||||
priv := m.Labels["private"]
|
||||
if repo[name] || priv == "false" {
|
||||
|
||||
Reference in New Issue
Block a user