Skip to content

Commit

Permalink
Show dequeue strategy in queue_stats output.
Browse files Browse the repository at this point in the history
  • Loading branch information
asciipip committed Feb 25, 2016
1 parent 60a27c4 commit 87931ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions queue_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ def print_stats(s):
if 'init' in s:
print 'currently initializing at zoom %s' % s['init']
print ''
for renderer, status in sorted(s['render'].items()):
print '%s: %s' % (renderer, status)
for renderer, (status, dequeue_strategy) in sorted(s['render'].items()):
print '%s/%s: %s' % (renderer, dequeue_strategy, status)
print ''
weighted_queues = {}
fixed_pct_queues = {}
Expand Down

0 comments on commit 87931ba

Please sign in to comment.