You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: shut down "session flusher" more promptly (#4561)
Currently this thread will wait for `sleep(self.flush_interval)` to end
before
checking `self._running`. We can do better by using an Event.
Now it will wait for `self.flush_interval` or until
`self.__shutdown_requested`
is set, whichever is shorter.
0 commit comments