Skip to content

Commit e19012c

Browse files
committed
Fix the request path of the metadata
1 parent 5defcfa commit e19012c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CCDB/src/CcdbApi.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ string CcdbApi::getFullUrlForStorage(const string& path, const map<string, strin
123123
string fullUrl = mUrl + "/" + path + "/" + startValidityString + "/" + endValidityString + "/";
124124
// Add metadata
125125
for (auto& kv : metadata) {
126-
fullUrl += kv.first + "=" + kv.second + "&";
126+
fullUrl += kv.first + "=" + kv.second + "/";
127127
}
128128
return fullUrl;
129129
}

0 commit comments

Comments
 (0)