1
0
Fork 0

Fixed a bug in URL parameters

This commit is contained in:
Michael Hackstein 2016-04-12 09:11:05 +02:00
parent 04f796e9a1
commit 68951f3a04
1 changed files with 1 additions and 1 deletions

View File

@ -1860,7 +1860,7 @@ int modifyDocumentOnCoordinator(
std::string baseUrl = "/_db/" + StringUtils::urlEncode(dbname) + "/_api/document/";
std::string optsUrlPart = std::string("?waitForSync=") + (options.waitForSync ? "true" : "false");
optsUrlPart += std::string("&ignoreRevs") + (options.ignoreRevs ? "true" : "false");
optsUrlPart += std::string("&ignoreRevs=") + (options.ignoreRevs ? "true" : "false");
arangodb::GeneralRequest::RequestType reqType;
if (isPatch) {