Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Commit

Permalink
Change unintended += to just =
Browse files Browse the repository at this point in the history
Signed-off-by: Gene Johnston <Eugene.Johnston@broadcom.com>
  • Loading branch information
gejohnston committed Jun 20, 2023
1 parent 21cd0fa commit cce2690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/rest/src/client/AbstractRestClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ export abstract class AbstractRestClient {
detailMessage =
`Received HTTP(S) error ${finalError.httpStatus} = ${http.STATUS_CODES[finalError.httpStatus]}.`;
} else { // TODO:V3_ERR_FORMAT - Remove in V3
detailMessage +=
detailMessage =
`HTTP(S) error status "${finalError.httpStatus}" received.\n` +
`Review request details (resource, base path, credentials, payload) and ensure correctness.`;
}
Expand Down

0 comments on commit cce2690

Please sign in to comment.