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 5ed1412 Fixes deprecation warning in couch playbook (#4063)
5ed1412 is described below
commit 5ed1412efb2aa925936a00ca270bbbbc8f322ad0
Author: Manjiri Tapaswi <mptapasw@ncsu.edu>
AuthorDate: Tue Oct 16 19:32:15 2018 -0700
Fixes deprecation warning in couch playbook (#4063)
---
ansible/roles/couchdb/tasks/deploy.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ansible/roles/couchdb/tasks/deploy.yml b/ansible/roles/couchdb/tasks/deploy.yml
index 2e3f640..b71156b 100644
--- a/ansible/roles/couchdb/tasks/deploy.yml
+++ b/ansible/roles/couchdb/tasks/deploy.yml
@@ -72,7 +72,7 @@
user: "{{ db.credentials.admin.user }}"
password: "{{ db.credentials.admin.pass }}"
force_basic_auth: yes
- when: (inventory_hostname == coordinator) and (couchdb.version|version_compare('2.0','>='))
+ when: (inventory_hostname == coordinator) and (couchdb.version is version_compare('2.0','>='))
- name: enable the cluster setup mode
uri:
|