Skip to content

Commit

Permalink
small typos
Browse files Browse the repository at this point in the history
  • Loading branch information
maidul98 committed Feb 23, 2025
1 parent 3cef827 commit 6a68978
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/src/ee/services/gateway/gateway-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const gatewayServiceFactory = ({
!envCfg.GATEWAY_RELAY_REALM
) {
throw new BadRequestError({
message: "Gateway handshake failed due to missing instance config."
message: "Gateway handshake failed due to missing instance configuration."
});
}

Expand Down
2 changes: 1 addition & 1 deletion backend/src/lib/gateway/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export const pingGatewayAndVerify = async ({

if (certificate.subject.CN !== identityId || certificate.subject.O !== orgId) {
throw new BadRequestError({
message: `Invalid gateway. Certificate not found for ${identityId} in organisation ${orgId}`
message: `Invalid gateway. Certificate not found for ${identityId} in organization ${orgId}`
});
}

Expand Down

0 comments on commit 6a68978

Please sign in to comment.