You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ch...@apache.org on 2018/08/06 15:19:14 UTC

[incubator-openwhisk-devtools] branch master updated: Modify Invoker to fix startup error (#146)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8f4d5ed  Modify Invoker to fix startup error (#146)
8f4d5ed is described below

commit 8f4d5eda6bd35a7fd4755a68647ce8df1bba6962
Author: Emanuel Russo <em...@gmail.com>
AuthorDate: Mon Aug 6 17:19:12 2018 +0200

    Modify Invoker to fix startup error (#146)
    
    Pass `--id` flag introduced in apache/incubator-openwhisk#3894
    
    Fixes #145
---
 docker-compose/docker-compose.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker-compose/docker-compose.yml b/docker-compose/docker-compose.yml
index 9a0d288..3006fa0 100644
--- a/docker-compose/docker-compose.yml
+++ b/docker-compose/docker-compose.yml
@@ -79,7 +79,7 @@ services:
   # WHISK INVOKER AGENT
   invoker:
     image: ${DOCKER_OW_IMAGE_PREFIX:-openwhisk}/invoker
-    command: /bin/sh -c "exec /init.sh 0 >> /logs/invoker-local_logs.log 2>&1"
+    command: /bin/sh -c "exec /init.sh --id 0 >> /logs/invoker-local_logs.log 2>&1"
     privileged: true
     pid: "host"
     userns_mode: "host"