We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32c04f9 commit 67bbc8fCopy full SHA for 67bbc8f
1 file changed
synchronizer/manager.go
@@ -151,10 +151,10 @@ func (s *ManagerImpl) Start() {
151
if !s.config.StreamingEnabled {
152
s.logger.Info("SDK initialized in polling mode")
153
s.startPolling()
154
- go func() { // create a goroutine that stops everything (the same way the streaming status watcher would)
155
- <-s.lifecycle.ShutdownRequested()
156
- s.stop()
157
- }()
+ // go func() { // create a goroutine that stops everything (the same way the streaming status watcher would)
+ // <-s.lifecycle.ShutdownRequested()
+ // s.stop()
+ // }()
158
return
159
}
160
0 commit comments