forked from Silverfish/proton-bridge
fix(GODT-2909): Remove Timeout on event publish
While good intentioned, this change causes issues when the computer goes to sleep and a user resumes after the timeout interval.
This commit is contained in:
@ -338,7 +338,7 @@ func (s *Service) handleEvent(ctx context.Context, lastEventID string, event pro
|
||||
s.log.Info("Received refresh event")
|
||||
}
|
||||
|
||||
return s.subscriberList.PublishParallel(ctx, event, s.panicHandler, s.eventTimeout)
|
||||
return s.subscriberList.PublishParallel(ctx, event, s.panicHandler)
|
||||
}
|
||||
|
||||
func unpackPublisherError(err error) (string, error) {
|
||||
|
||||
Reference in New Issue
Block a user