You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ma...@apache.org on 2018/09/18 08:24:44 UTC

[incubator-openwhisk] branch master updated: Default invoker protocol to http. (#4026)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new acf59c4  Default invoker protocol to http. (#4026)
acf59c4 is described below

commit acf59c411565b4c73409eaf3936b6a0748c296df
Author: David Grove <dg...@users.noreply.github.com>
AuthorDate: Tue Sep 18 04:24:38 2018 -0400

    Default invoker protocol to http. (#4026)
    
    068bb26 made whisk.invoker.protocol a mandatory property, but failed to provide a default value for it.
---
 core/invoker/src/main/resources/application.conf | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/core/invoker/src/main/resources/application.conf b/core/invoker/src/main/resources/application.conf
index 57989a8..d6f1a1d 100644
--- a/core/invoker/src/main/resources/application.conf
+++ b/core/invoker/src/main/resources/application.conf
@@ -84,4 +84,8 @@ whisk {
   tracing {
     component = "Invoker"
   }
+
+  invoker {
+    protocol: http
+  }
 }