File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -204,9 +204,9 @@ def get_all_splits(self):
204204 :rtype: list(splitio.models.splits.Split)
205205 """
206206 keys = self ._redis .keys (self ._get_key ('*' ))
207- _LOGGER .debug ("Fetchting all Splits from redis: %s" % keys )
208207 to_return = []
209208 try :
209+ _LOGGER .debug ("Fetchting all Splits from redis: %s" % keys )
210210 raw_splits = self ._redis .mget (keys )
211211 _LOGGER .debug (raw_splits )
212212 for raw in raw_splits :
@@ -563,9 +563,9 @@ def put(self, events):
563563 """
564564 key = self ._EVENTS_KEY_TEMPLATE
565565 to_store = self ._wrap_events (events )
566- _LOGGER .debug ("Adding Events to redis key %s" % (key ))
567- _LOGGER .debug (to_store )
568566 try :
567+ _LOGGER .debug ("Adding Events to redis key %s" % (key ))
568+ _LOGGER .debug (to_store )
569569 self ._redis .rpush (key , * to_store )
570570 return True
571571 except RedisAdapterException :
You can’t perform that action at this time.
0 commit comments