Commit 61b390ce authored by Vincent Pelletier's avatar Vincent Pelletier

Drop forgotten pdb statement.

parent 0337076c
...@@ -152,13 +152,9 @@ def getDataPoints(apdex_dict, status_period_dict={}): ...@@ -152,13 +152,9 @@ def getDataPoints(apdex_dict, status_period_dict={}):
if statusIsError(status): if statusIsError(status):
for period, hit in period_dict.iteritems(): for period, hit in period_dict.iteritems():
period_error_dict[period] += hit period_error_dict[period] += hit
try: # If there was an error, there was a hit, and apdex_dict must contain it
# If there was an error, there was a hit, and apdex_dict must contain it # (at same date).
# (at same date). assert len(set(period_error_dict) - set(apdex_dict)) == 0
assert len(set(period_error_dict) - set(apdex_dict)) == 0
except:
import pdb; pdb.set_trace()
raise
return [ return [
( (
value_date, value_date,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment