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

[incubator-openwhisk-wskdeploy] branch master updated: #956 Fixed apigateway docs and example manifests (#974)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4aae200  #956 Fixed apigateway docs and example manifests (#974)
4aae200 is described below

commit 4aae2005b565300f08601cbb366b1b05f9a923a3
Author: Bruno Girin <br...@gmail.com>
AuthorDate: Fri Aug 31 20:05:07 2018 +0100

    #956 Fixed apigateway docs and example manifests (#974)
---
 docs/examples/manifest_hello_world_apigateway.yaml         | 3 ++-
 docs/examples/manifest_hello_world_apigateway_sequence.yml | 3 ++-
 docs/wskdeploy_apigateway_helloworld.md                    | 3 ++-
 docs/wskdeploy_apigateway_sequence.md                      | 3 ++-
 4 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/docs/examples/manifest_hello_world_apigateway.yaml b/docs/examples/manifest_hello_world_apigateway.yaml
index f5fb29b..eb8c65d 100644
--- a/docs/examples/manifest_hello_world_apigateway.yaml
+++ b/docs/examples/manifest_hello_world_apigateway.yaml
@@ -14,4 +14,5 @@ packages:
       hello-world:
         hello:
           world:
-            hello_world: GET
+            hello_world:
+              method: GET
diff --git a/docs/examples/manifest_hello_world_apigateway_sequence.yml b/docs/examples/manifest_hello_world_apigateway_sequence.yml
index bf28266..8a27a4b 100644
--- a/docs/examples/manifest_hello_world_apigateway_sequence.yml
+++ b/docs/examples/manifest_hello_world_apigateway_sequence.yml
@@ -19,4 +19,5 @@ packages:
       hello-world:
         hello:
           world:
-            hello_world: GET
+            hello_world:
+              method: GET
diff --git a/docs/wskdeploy_apigateway_helloworld.md b/docs/wskdeploy_apigateway_helloworld.md
index e2ea220..29dbab3 100644
--- a/docs/wskdeploy_apigateway_helloworld.md
+++ b/docs/wskdeploy_apigateway_helloworld.md
@@ -42,7 +42,8 @@ packages:
       hello-world:
         hello:
           world:
-            hello_world: GET
+            hello_world:
+              method: GET
 ```
 
 There are two key changes to this file:
diff --git a/docs/wskdeploy_apigateway_sequence.md b/docs/wskdeploy_apigateway_sequence.md
index 898108d..8c03fe5 100644
--- a/docs/wskdeploy_apigateway_sequence.md
+++ b/docs/wskdeploy_apigateway_sequence.md
@@ -47,7 +47,8 @@ packages:
       hello-world:
         hello:
           world:
-            hello_world: GET
+            hello_world:
+              method: GET
 ```
 
 There are two key changes to this file: