mirror of https://gitee.com/bigwinds/arangodb
Fixed a bug in URL parameters
This commit is contained in:
parent
04f796e9a1
commit
68951f3a04
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue