From fb12252d2d3166c1a46ed6542f87638b140a1e70 Mon Sep 17 00:00:00 2001 From: sdk-team Date: Thu, 4 Feb 2021 06:34:05 +0000 Subject: [PATCH] Supported console. --- CHANGELOG | 3 +++ safconsole/src/SafconsoleClient.cc | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index e846d3b22..d9eb8ac7b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,9 @@ 2021-02-04 Version: patch - Supported console. +2021-02-04 Version: patch +- Supported console. + 2021-02-04 Version: patch - Update TaggingImage. diff --git a/safconsole/src/SafconsoleClient.cc b/safconsole/src/SafconsoleClient.cc index 6287d16e4..6ce55d6d3 100644 --- a/safconsole/src/SafconsoleClient.cc +++ b/safconsole/src/SafconsoleClient.cc @@ -31,21 +31,21 @@ SafconsoleClient::SafconsoleClient(const Credentials &credentials, const ClientC RpcServiceClient(SERVICE_NAME, std::make_shared(credentials), configuration) { auto locationClient = std::make_shared(credentials, configuration); - endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, "safconsole"); + endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, "saf"); } SafconsoleClient::SafconsoleClient(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, "safconsole"); + endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, "saf"); } SafconsoleClient::SafconsoleClient(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, "safconsole"); + endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, "saf"); } SafconsoleClient::~SafconsoleClient()