Upped gql subscriber channel size from 1 to 100

gql_cataclysm
noah metz 2023-11-15 09:33:02 -07:00
parent c33f37e4cd
commit 9c534a1d33
1 changed files with 1 additions and 1 deletions

@ -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,