Skip to content
Merged
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
4 changes: 2 additions & 2 deletions splitio/storage/inmemmory.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,8 @@ def put(self, impressions):
if self._queue_full_hook is not None and callable(self._queue_full_hook):
self._queue_full_hook()
_LOGGER.warning(
'Event queue is full, failing to add more events. \n'
'Consider increasing parameter `eventQueueSize` in configuration'
'Impression queue is full, failing to add more impressions. \n'
'Consider increasing parameter `impressionsQueueSize` in configuration'
)
return False

Expand Down