This is an automated email from the ASF dual-hosted git repository.
rabbah pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk.git
The following commit(s) were added to refs/heads/master by this push:
new 0f9c7a24a Remove agentOptions for SSL certificate validation (#5577)
0f9c7a24a is described below
commit 0f9c7a24a920fe2bea6869ed9c81eb2437409c08
Author: rodric rabbah <[email protected]>
AuthorDate: Wed Jun 17 12:33:36 2026 -0400
Remove agentOptions for SSL certificate validation (#5577)
Remove agentOptions to reject unauthorized SSL certificates. Other API
calls don't use this bypass.
---
core/routemgmt/common/utils.js | 1 -
1 file changed, 1 deletion(-)
diff --git a/core/routemgmt/common/utils.js b/core/routemgmt/common/utils.js
index a9672b9ac..6062eccf5 100644
--- a/core/routemgmt/common/utils.js
+++ b/core/routemgmt/common/utils.js
@@ -237,7 +237,6 @@ function deleteApiFromGateway(gwInfo, gwApiId) {
var options = {
followAllRedirects: true,
url: gwInfo.gwUrl+'/apis/'+gwApiId,
- agentOptions: {rejectUnauthorized: false},
headers: {
'Accept': 'application/json'
}