We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 65f33af + 27fb4df commit 92e6c5eCopy full SHA for 92e6c5e
splitio/tasks/uwsgi_wrappers.py
@@ -124,7 +124,7 @@ def uwsgi_report_impressions(user_config):
124
while True:
125
try:
126
impressions_sync_task._send_impressions() #pylint: disable=protected-access
127
- for _ in xrange(0, seconds):
+ for _ in range(0, seconds):
128
if storage.should_flush():
129
storage.acknowledge_flush()
130
break
@@ -157,7 +157,7 @@ def uwsgi_report_events(user_config):
157
158
159
task._send_events() #pylint: disable=protected-access
160
161
162
163
0 commit comments