You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by dg...@apache.org on 2021/04/11 17:24:19 UTC

[openwhisk] branch master updated: Quote ansible default value. (#5101)

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.git


The following commit(s) were added to refs/heads/master by this push:
     new 6e5850f  Quote ansible default value. (#5101)
6e5850f is described below

commit 6e5850f52dd965e6fafaccb39d28c37854571463
Author: rodric rabbah <ro...@gmail.com>
AuthorDate: Sun Apr 11 13:24:05 2021 -0400

    Quote ansible default value. (#5101)
---
 ansible/group_vars/all | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/ansible/group_vars/all b/ansible/group_vars/all
index bcaba7a..84b6b02 100644
--- a/ansible/group_vars/all
+++ b/ansible/group_vars/all
@@ -453,5 +453,4 @@ etcd_connect_string: "{% set ret = [] %}\
 
 scheduler:
   dataManagementService:
-    retryInterval: "{{ scheduler_dataManagementService_retryInterval | default(1 second) }}"
-
+    retryInterval: "{{ scheduler_dataManagementService_retryInterval | default('1 second') }}"