Fix S3BlobStoreEndpoint::getURLFormat

This commit is contained in:
sfc-gh-tclinkenbeard 2021-05-10 10:24:37 -07:00
parent b10ea7677e
commit 4666f59c4c
1 changed files with 2 additions and 1 deletions

View File

@ -116,7 +116,8 @@ public:
const char* resource = "";
if (withResource)
resource = "<name>";
return format("blobstore://[<api_key>:<secret>]@<host>[:<port>]/%s[?<param>=<value>[&<param>=<value>]...]", resource);
return format("blobstore://[<api_key>:<secret>@]<host>[:<port>]/%s[?<param>=<value>[&<param>=<value>]...]",
resource);
}
typedef std::map<std::string, std::string> ParametersT;