From 7fc259310fceac9c3ff8af149ff95484391b5b2b Mon Sep 17 00:00:00 2001 From: Jeff Albert Date: Thu, 21 Nov 2019 12:02:50 -0800 Subject: [PATCH] Removes reference to deprecated rally-manage Replaces the call to "rally-manage db create" with the post-2.0.0-compatible "rally db create". Closes-Bug: #1853509 Change-Id: I588ba1e26f5e4afc40f43547b15b48e9428e2f48 --- tasks/rally_db_setup.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/rally_db_setup.yml b/tasks/rally_db_setup.yml index 4f73763..6d07700 100644 --- a/tasks/rally_db_setup.yml +++ b/tasks/rally_db_setup.yml @@ -20,7 +20,7 @@ register: rally_deployment_list_result - name: Create/upgrade Rally DB schema - command: "{{ rally_bin }}/rally-manage db create" + command: "{{ rally_bin }}/rally db create" when: - rally_deployment_list_result.stdout is search("Database is missing")