This is an automated email from the ASF dual-hosted git repository.
dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-python.git
The following commit(s) were added to refs/heads/master by this push:
new 99a47eb Fix formatting of local_build.md (#166)
99a47eb is described below
commit 99a47eb64baf2434edae6b83882727b563e920c4
Author: Rocco <[email protected]>
AuthorDate: Fri Sep 27 22:28:41 2024 +0800
Fix formatting of local_build.md (#166)
---
tutorials/local_build.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tutorials/local_build.md b/tutorials/local_build.md
index b00adaf..eb623ef 100644
--- a/tutorials/local_build.md
+++ b/tutorials/local_build.md
@@ -223,11 +223,11 @@ To initialize the function make sure the python runtime
container is running. If
Issue a `POST` request against the `init` API with the following command:
- Using curl
- curl -d "@python-data-init-params.json" -H "Content-Type: application/json"
http://localhost/init
+ curl -d "@python-data-init-params.json" -H "Content-Type:
application/json" http://localhost/init
- Using wget
- wget --post-file=python-data-init-params.json --header="Content-Type:
application/json" http://localhost/init
+ wget --post-file=python-data-init-params.json --header="Content-Type:
application/json" http://localhost/init
- Using postman
@@ -326,11 +326,11 @@ Initialize our fibonacci function by issuing a `POST`
request against the `init`
- Using curl
- curl -d "@python-fib-init.json" -H "Content-Type: application/json"
http://localhost/init
+ curl -d "@python-fib-init.json" -H "Content-Type: application/json"
http://localhost/init
- Using wget
- wget --post-file=python-fib-init.json --header="Content-Type:
application/json" http://localhost/init
+ wget --post-file=python-fib-init.json --header="Content-Type:
application/json" http://localhost/init
- Using postman