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
LogPusher: drop redundant close check; outer loop handles it
Replace ``while True`` + mid-loop close returns with
``while not self._closed``. The close check after rebuffer is gone; the
backoff wait still breaks on close via ``_closed``, and the outer loop
then exits naturally at the next iteration. Semantics unchanged — one
best-effort drain pass on close, then exit.
0 commit comments