From 4edd799a79f9b94330d5705bb0789105b6d0bb44 Mon Sep 17 00:00:00 2001 From: sdk-team Date: Sun, 26 Sep 2021 10:08:42 +0000 Subject: [PATCH] Support odcap device. --- CHANGELOG | 3 +++ VERSION | 2 +- vs/src/VsClient.cc | 6 +++--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 3d5347efb..21d1f174d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +2021-09-26 Version: 1.36.888 +- Support odcap device. + 2021-09-26 Version: 1.36.887 - Support odcap device. diff --git a/VERSION b/VERSION index d4db91f63..2247b1d4e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.887 \ No newline at end of file +1.36.888 \ No newline at end of file diff --git a/vs/src/VsClient.cc b/vs/src/VsClient.cc index 0c26e6fb6..07f6ea22c 100644 --- a/vs/src/VsClient.cc +++ b/vs/src/VsClient.cc @@ -31,21 +31,21 @@ VsClient::VsClient(const Credentials &credentials, const ClientConfiguration &co RpcServiceClient(SERVICE_NAME, std::make_shared(credentials), configuration) { auto locationClient = std::make_shared(credentials, configuration); - endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, "vs"); + endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, ""); } VsClient::VsClient(const std::shared_ptr& credentialsProvider, const ClientConfiguration & configuration) : RpcServiceClient(SERVICE_NAME, credentialsProvider, configuration) { auto locationClient = std::make_shared(credentialsProvider, configuration); - endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, "vs"); + endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, ""); } VsClient::VsClient(const std::string & accessKeyId, const std::string & accessKeySecret, const ClientConfiguration & configuration) : RpcServiceClient(SERVICE_NAME, std::make_shared(accessKeyId, accessKeySecret), configuration) { auto locationClient = std::make_shared(accessKeyId, accessKeySecret, configuration); - endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, "vs"); + endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, ""); } VsClient::~VsClient()