From 9c534a1d33cdf8cf9d826b1045620b21394cbe60 Mon Sep 17 00:00:00 2001 From: Noah Metz Date: Wed, 15 Nov 2023 09:33:02 -0700 Subject: [PATCH] Upped gql subscriber channel size from 1 to 100 --- gql.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gql.go b/gql.go index c493c56..aa108c3 100644 --- a/gql.go +++ b/gql.go @@ -1616,7 +1616,7 @@ func (ext *GQLExt) AddSubscription(id uuid.UUID) (chan interface{}, error) { } } - c := make(chan interface{}, 1) + c := make(chan interface{}, 100) ext.subscriptions = append(ext.subscriptions, SubscriptionInfo{ id,