Skip to content

Commit

Permalink
Merge pull request #324 from EreMaijala/fix-disable-queued-tracking
Browse files Browse the repository at this point in the history
Fix disabling of queued tracking with bulk requests.
  • Loading branch information
sgiehl authored Nov 18, 2021
2 parents 6a0dae6 + 2e5e26f commit 55eb9b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion import_logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -2009,7 +2009,9 @@ def _record_hits(self, hits):
'requests': [self._get_hit_args(hit) for hit in hits]
}
try:
args = {}
args = {
'queuedtracking': '0'
}

if config.options.debug_tracker:
args['debug'] = '1'
Expand Down

0 comments on commit 55eb9b1

Please sign in to comment.