Add missing increment to counter
This commit is contained in:
parent
9cb89b42bf
commit
4571042814
|
@ -215,7 +215,7 @@ public class AccountsManager {
|
||||||
dynamoDelete(account);
|
dynamoDelete(account);
|
||||||
} catch (final Exception e) {
|
} catch (final Exception e) {
|
||||||
logger.error("Could not delete account {} from dynamo", account.getUuid().toString());
|
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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue