Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

Commit

Permalink
[#IOPID-106] fix property sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
gquadrati committed Apr 14, 2023
1 parent a653171 commit 21a7159
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions HandlePubKeyRevoke/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,20 +164,18 @@ export const handleRevoke = (
trackException(telemetryClient, {
exception: new Error(error),
properties: {
/* eslint-disable sort-keys */
detail: err.kind,
errorMessage: error,
fatal: PermanentFailure.is(err).toString(),
isSuccess: "false",
retryCount: String(
context.executionContext.retryContext?.retryCount ?? "undefined"
),
maxRetryCount: String(
context.executionContext.retryContext?.maxRetryCount ?? "undefined"
),
modelId: err.modelId ?? "",
name: "lollipop.pubKeys.revoke.failure"
/* eslint-enable sort-keys */
name: "lollipop.pubKeys.revoke.failure",
retryCount: String(
context.executionContext.retryContext?.retryCount ?? "undefined"
)
},
tagOverrides: { samplingEnabled: "false" }
});
Expand Down

0 comments on commit 21a7159

Please sign in to comment.