| Index: appengine/third_party/gae_ts_mon/config.py
|
| diff --git a/appengine/third_party/gae_ts_mon/config.py b/appengine/third_party/gae_ts_mon/config.py
|
| index e1aee7438dd3c339e1b9b3c2818422b81c514971..2495f17480c319a806803d1b930b1ffa8c67c68b 100644
|
| --- a/appengine/third_party/gae_ts_mon/config.py
|
| +++ b/appengine/third_party/gae_ts_mon/config.py
|
| @@ -39,7 +39,7 @@ def _reset_cumulative_metrics():
|
| """Clear the state when an instance loses its task_num assignment."""
|
| logging.warning('Instance %s got purged from Datastore, but is still alive. '
|
| 'Clearing cumulative metrics.', shared.instance_key_id())
|
| - for _target, metric, start_time, _fields in interface.state.store.get_all():
|
| + for _, metric, _, _, _ in interface.state.store.get_all():
|
| if metric.is_cumulative():
|
| metric.reset()
|
|
|
|
|