Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
turt2live authored May 29, 2022
1 parent dd9dd78 commit 5986a09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/metrics/decorators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function timedMatrixClientFunctionCall() {
this.metrics.increment(METRIC_MATRIX_CLIENT_FAILED_FUNCTION_CALL, context, 1);
throw e;
} finally {
this.metrics.end(METRIC_MATRIX_CLIENT_FUNCTION_CALL, context)
this.metrics.end(METRIC_MATRIX_CLIENT_FUNCTION_CALL, context);
}
};
};
Expand All @@ -59,7 +59,7 @@ export function timedIdentityClientFunctionCall() {
this.metrics.increment(METRIC_IDENTITY_CLIENT_FAILED_FUNCTION_CALL, context, 1);
throw e;
} finally {
this.metrics.end(METRIC_IDENTITY_CLIENT_FUNCTION_CALL, context)
this.metrics.end(METRIC_IDENTITY_CLIENT_FUNCTION_CALL, context);
}
}
};
Expand Down Expand Up @@ -87,7 +87,7 @@ export function timedIntentFunctionCall() {
this.metrics.increment(METRIC_INTENT_FAILED_FUNCTION_CALL, context, 1);
throw e;
} finally {
this.metrics.end(METRIC_INTENT_FUNCTION_CALL, context)
this.metrics.end(METRIC_INTENT_FUNCTION_CALL, context);
}
}
};
Expand Down

0 comments on commit 5986a09

Please sign in to comment.