@@ -31,21 +31,21 @@ VideosegClient::VideosegClient(const Credentials &credentials, const ClientConfi
3131 RpcServiceClient(SERVICE_NAME, std::make_shared<SimpleCredentialsProvider>(credentials), configuration)
3232{
3333 auto locationClient = std::make_shared<LocationClient>(credentials, configuration);
34- endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId (), SERVICE_NAME, " videoseg " );
34+ endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId (), SERVICE_NAME, " " );
3535}
3636
3737VideosegClient::VideosegClient (const std::shared_ptr<CredentialsProvider>& credentialsProvider, const ClientConfiguration & configuration) :
3838 RpcServiceClient(SERVICE_NAME, credentialsProvider, configuration)
3939{
4040 auto locationClient = std::make_shared<LocationClient>(credentialsProvider, configuration);
41- endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId (), SERVICE_NAME, " videoseg " );
41+ endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId (), SERVICE_NAME, " " );
4242}
4343
4444VideosegClient::VideosegClient (const std::string & accessKeyId, const std::string & accessKeySecret, const ClientConfiguration & configuration) :
4545 RpcServiceClient(SERVICE_NAME, std::make_shared<SimpleCredentialsProvider>(accessKeyId, accessKeySecret), configuration)
4646{
4747 auto locationClient = std::make_shared<LocationClient>(accessKeyId, accessKeySecret, configuration);
48- endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId (), SERVICE_NAME, " videoseg " );
48+ endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId (), SERVICE_NAME, " " );
4949}
5050
5151VideosegClient::~VideosegClient ()
0 commit comments