Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
chore(docs): remove 400 status code
Browse files Browse the repository at this point in the history
We do not return 400 anywhere on this endpoint
  • Loading branch information
dtfiedler committed Jun 27, 2024
1 parent a7c7dfc commit 3c52a1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
9 changes: 0 additions & 9 deletions docs/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,6 @@ paths:
type: object
properties:
message: { type: string }
'400':
description: |-
400 response
content:
application/json:
schema:
type: object
properties:
message: { type: string }
'401':
description: |-
401 response
Expand Down
3 changes: 2 additions & 1 deletion src/system.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,9 @@ export async function evaluateArNSNames() {
);
log.info('Finished evaluating arns names', {
durationMs: Date.now() - startTime,
apexRecordCount: validArNSRecords.length,
apexRecordCount: Object.keys(apexRecords).length,
evaluatedRecordCount: successfulEvaluationCount,
evaluatedProcessCount: Object.keys(processRecordMap).length,
failedProcessCount:
processIds.size - Object.keys(processRecordMap).length,
});
Expand Down

0 comments on commit 3c52a1d

Please sign in to comment.