Skip to content

Commit

Permalink
Address Supriya's comment on PR google#103.
Browse files Browse the repository at this point in the history
  • Loading branch information
EranGabber committed Jul 8, 2015
1 parent d69df2c commit 744747c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion collector/global_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def add_elapsed(self, start_time, url_or_fname, elapsed_seconds):
assert utilities.valid_string(url_or_fname)
assert isinstance(elapsed_seconds, types.FloatType)

# If the queue is too large, remove some items until it will contain less
# If the queue is too large, remove some items until it contains less
# than constants.MAX_ELAPSED_QUEUE_SIZE elements.
while self._elapsed_queue.qsize() >= constants.MAX_ELAPSED_QUEUE_SIZE:
try:
Expand Down

0 comments on commit 744747c

Please sign in to comment.