From 431319ee4ddf1e240309d84d9307558548ebeda0 Mon Sep 17 00:00:00 2001 From: licanwei Date: Mon, 2 Dec 2019 14:41:32 +0800 Subject: [PATCH] Watcherclient supports list data model API Change-Id: I5527414b5e87253d87a4a26398ad5dcce1193e43 Related-Bug: #1854121 --- watcherclient/common/httpclient.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/watcherclient/common/httpclient.py b/watcherclient/common/httpclient.py index f0cd592..938eb9c 100644 --- a/watcherclient/common/httpclient.py +++ b/watcherclient/common/httpclient.py @@ -40,8 +40,8 @@ from watcherclient import exceptions # Record the latest version that this client was tested with. DEFAULT_VER = '1.latest' -# Minor version 2 for adding force option to audit -LAST_KNOWN_API_VERSION = 2 +# Minor version 3 for adding list data model API +LAST_KNOWN_API_VERSION = 3 LATEST_VERSION = '1.{}'.format(LAST_KNOWN_API_VERSION) LOG = logging.getLogger(__name__)