From 7b56f1d9b757584b887d26160fbce66af74dddcc Mon Sep 17 00:00:00 2001 From: Jonathan Herlin Date: Sun, 25 Nov 2018 17:16:45 +0100 Subject: [PATCH] Update playbook to newer syntax. --- [DEPRECATION WARNING]: Using tests as filters is deprecated. Instead of using `result|success` use `result is success`. This feature will be removed in version 2.9. --- This patch updates the syntax to a non deprecated one Change-Id: I555dde8bc565f96d8f38fdabc99546e396335095 --- tasks/keystone_service_update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/keystone_service_update.yml b/tasks/keystone_service_update.yml index 92cd1804..0299d4b5 100644 --- a/tasks/keystone_service_update.yml +++ b/tasks/keystone_service_update.yml @@ -41,7 +41,7 @@ - url: "{{ keystone_service_internaluri }}" validate_certs: "{{ not keystone_service_internaluri_insecure }}" register: _wait_check - until: _wait_check | success + until: _wait_check is success retries: 12 delay: 5