Skip to content

Commit 941c5e1

Browse files
authored
Merge pull request #220 from splitio/full_impressions_queue_log
Updating logging on full impressions queue
2 parents 31b9107 + d91d2d5 commit 941c5e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

splitio/storage/inmemmory.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,8 +321,8 @@ def put(self, impressions):
321321
if self._queue_full_hook is not None and callable(self._queue_full_hook):
322322
self._queue_full_hook()
323323
_LOGGER.warning(
324-
'Event queue is full, failing to add more events. \n'
325-
'Consider increasing parameter `eventQueueSize` in configuration'
324+
'Impression queue is full, failing to add more impressions. \n'
325+
'Consider increasing parameter `impressionsQueueSize` in configuration'
326326
)
327327
return False
328328

0 commit comments

Comments
 (0)