Skip to content

Commit

Permalink
fix(application-generic): Apply proper fix
Browse files Browse the repository at this point in the history
This was set to true for testing purposes while developing 143dfce.
  • Loading branch information
SokratisVidros committed Oct 20, 2024
1 parent 143dfce commit 9c278bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export class ExecuteBridgeRequest {
* Reject self-signed and invalid certificates in Production environments but allow them in Development
* as it's common for developers to use self-signed certificates in local environments.
*/
rejectUnauthorized: true,
rejectUnauthorized: environment.name.toLowerCase() === 'production',
};

const request = [PostActionEnum.EXECUTE, PostActionEnum.PREVIEW].includes(
Expand Down

0 comments on commit 9c278bc

Please sign in to comment.