Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion splitio/push/splitsse.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ async def stop(self):
try:
await self._event_source_ended.wait()
except asyncio.CancelledError as e:
_LOGGER.error("Exception waiting for event source ended")
_LOGGER.debug("Exception waiting for event source ended")
_LOGGER.debug('stack trace: ', exc_info=True)
pass

Expand Down
2 changes: 1 addition & 1 deletion splitio/push/sse.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ async def shutdown(self):
try:
await self._done.wait()
except asyncio.CancelledError:
_LOGGER.error("Exception waiting for SSE connection to end")
_LOGGER.debug("Exception waiting for SSE connection to end")
_LOGGER.debug('stack trace: ', exc_info=True)
pass

Expand Down
Loading