From ff52b651dc6b6b7159df48fd22a10cca6bb97818 Mon Sep 17 00:00:00 2001 From: Pedro Nasser Date: Mon, 25 Jul 2016 18:16:56 -0300 Subject: [PATCH] fix env var readme --- examples/redis/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/redis/README.md b/examples/redis/README.md index aa4893c94..a81cbbed7 100644 --- a/examples/redis/README.md +++ b/examples/redis/README.md @@ -120,7 +120,7 @@ Eg. /redis/do ``` curl -X POST --data '{ "name": "do", - "image": "$USERNAME/func-redis", + "image": "'$USERNAME'/func-redis", "path": "/do" }' http://$FUNCHOST/v1/apps/redis/routes ``` @@ -131,8 +131,8 @@ Now that we created our Function route, lets test it. ``` curl -X POST --data '{ - "redis":"$REDISHOST", - "redisAuth":"$REDISAUTH", + "redis":"'$REDISHOST'", + "redisAuth":"'$REDISAUTH'", "command": "SET", "args":["abc", "123"] }' http://$FUNCHOST/redis/exec