You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ra...@apache.org on 2018/03/17 12:48:23 UTC

[incubator-openwhisk] branch master updated: add quotes to avoid parsing errors (#3452)

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

rabbah 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 617ffbb  add quotes to avoid parsing errors (#3452)
617ffbb is described below

commit 617ffbb868e203d707dceefbf8c80fe062f6532b
Author: Martin Henke <ma...@web.de>
AuthorDate: Sat Mar 17 13:48:20 2018 +0100

    add quotes to avoid parsing errors (#3452)
---
 tests/src/test/resources/application.conf.j2 | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/tests/src/test/resources/application.conf.j2 b/tests/src/test/resources/application.conf.j2
index e235bd7..6054bda 100644
--- a/tests/src/test/resources/application.conf.j2
+++ b/tests/src/test/resources/application.conf.j2
@@ -33,16 +33,16 @@ whisk {
     }
 
     couchdb {
-        protocol = {{ db_protocol }}
-        host     = {{ db_host }}
-        port     = {{ db_port }}
-        username = {{ db_username }}
-        password = {{ db_password }}
-        provider = {{ db_provider }}
+        protocol = "{{ db_protocol }}"
+        host     = "{{ db_host }}"
+        port     = "{{ db_port }}"
+        username = "{{ db_username }}"
+        password = "{{ db_password }}"
+        provider = "{{ db_provider }}"
         databases {
-          WhiskAuth       = {{ db.whisk.auth }}
-          WhiskEntity     = {{ db.whisk.actions }}
-          WhiskActivation = {{ db.whisk.activations }}
+          WhiskAuth       = "{{ db.whisk.auth }}"
+          WhiskEntity     = "{{ db.whisk.actions }}"
+          WhiskActivation = "{{ db.whisk.activations }}"
         }
     }
 

-- 
To stop receiving notification emails like this one, please contact
rabbah@apache.org.