diff options
| author | 2018-04-04 17:27:14 -0700 | |
|---|---|---|
| committer | 2018-04-04 17:34:30 -0700 | |
| commit | 5260eea5e48f7c54fa28c2254547c588c344d26d (patch) | |
| tree | 1a9a8623afec9886f239354c5254d6a35d4234d9 | |
| parent | 48920ab48d5d43e22871b688c830670b56aac3ec (diff) | |
BugFix: Config TTL
In statsStats, we were writing the config TTL reset time to the wrong
proto field number. This fixes that.
Bug: b/77604625
Test: unit tests, pending CTS test
Change-Id: I9f6e502bf13785bfa60d68805d46b9a5c2286f44
| -rw-r--r-- | cmds/statsd/src/guardrail/StatsdStats.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/statsd/src/guardrail/StatsdStats.cpp b/cmds/statsd/src/guardrail/StatsdStats.cpp index 0c076e95dfd5..b3921128ff33 100644 --- a/cmds/statsd/src/guardrail/StatsdStats.cpp +++ b/cmds/statsd/src/guardrail/StatsdStats.cpp @@ -63,7 +63,7 @@ const int FIELD_ID_LOGGER_STATS_ERROR_CODE = 2; const int FIELD_ID_CONFIG_STATS_UID = 1; const int FIELD_ID_CONFIG_STATS_ID = 2; const int FIELD_ID_CONFIG_STATS_CREATION = 3; -const int FIELD_ID_CONFIG_STATS_RESET = 18; +const int FIELD_ID_CONFIG_STATS_RESET = 19; const int FIELD_ID_CONFIG_STATS_DELETION = 4; const int FIELD_ID_CONFIG_STATS_METRIC_COUNT = 5; const int FIELD_ID_CONFIG_STATS_CONDITION_COUNT = 6; |