From d21cf4a7e71748b0769bb1c4a53d0a50411e7dcf Mon Sep 17 00:00:00 2001 From: Eyal Date: Mon, 6 Jan 2020 14:44:25 +0200 Subject: [PATCH] Designate uses only v2 Was fixed in https://review.opendev.org/#/c/682785/ just fix the comment and the tools Change-Id: I29acc5c0e50faed1456c8f46fddb835e01bcc0a8 --- mistral/actions/openstack/mapping.json | 2 +- tools/get_action_list.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mistral/actions/openstack/mapping.json b/mistral/actions/openstack/mapping.json index 79516e64d..73abb8c70 100644 --- a/mistral/actions/openstack/mapping.json +++ b/mistral/actions/openstack/mapping.json @@ -1058,7 +1058,7 @@ "workflows_validate": "workflows.validate" }, "designate": { - "_comment": "It uses designateclient.v1.", + "_comment": "It uses designateclient.v2.", "diagnostics_ping": "diagnostics.ping", "domains_create ": "domains.create", "domains_delete": "domains.delete", diff --git a/tools/get_action_list.py b/tools/get_action_list.py index c8f8f8fed..522c96e4d 100644 --- a/tools/get_action_list.py +++ b/tools/get_action_list.py @@ -191,7 +191,7 @@ def get_barbican_client(**kwargs): def get_designate_client(**kwargs): - return designateclient.Client('1') + return designateclient.Client('2') def get_magnum_client(**kwargs):