Add missing increment to counter

This commit is contained in:
Chris Eager 2021-05-07 18:24:21 -05:00 committed by Jon Chambers
parent 9cb89b42bf
commit 4571042814
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ public class AccountsManager {
dynamoDelete(account);
} catch (final Exception e) {
logger.error("Could not delete account {} from dynamo", account.getUuid().toString());
Metrics.counter(DYNAMO_MIGRATION_ERROR_COUNTER, "action", "delete");
Metrics.counter(DYNAMO_MIGRATION_ERROR_COUNTER, "action", "delete").increment();
}
}