You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by cs...@apache.org on 2018/04/27 13:53:20 UTC

[incubator-openwhisk-package-alarms] branch master updated: allow apihost port to be configurable (#148)

This is an automated email from the ASF dual-hosted git repository.

csantanapr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-package-alarms.git


The following commit(s) were added to refs/heads/master by this push:
     new 95d0ea2  allow apihost port to be configurable (#148)
95d0ea2 is described below

commit 95d0ea21d0d2d4859ff1104a1016ba60cd8a7952
Author: Jason Peterson <ja...@us.ibm.com>
AuthorDate: Fri Apr 27 09:53:18 2018 -0400

    allow apihost port to be configurable (#148)
---
 provider/lib/utils.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/provider/lib/utils.js b/provider/lib/utils.js
index cceffab..28b2f08 100644
--- a/provider/lib/utils.js
+++ b/provider/lib/utils.js
@@ -19,7 +19,7 @@ module.exports = function(logger, triggerDB, redisClient) {
     this.redisClient = redisClient;
     this.redisHash = triggerDB.config.db + '_' + this.worker;
     this.redisKey = constants.REDIS_KEY;
-    this.uriHost ='https://' + this.routerHost + ':443';
+    this.uriHost ='https://' + this.routerHost;
     this.sanitizer = new Sanitizer(logger, triggerDB, this.uriHost);
     this.monitorStatus = {};
 

-- 
To stop receiving notification emails like this one, please contact
csantanapr@apache.org.