mirror of https://gitee.com/bigwinds/arangodb
query view bugfix when receiving a conflict http
This commit is contained in:
parent
166d7edd95
commit
7e66d2a3a9
|
@ -1606,10 +1606,13 @@
|
|||
}
|
||||
}
|
||||
catch (e) {
|
||||
if (error.code !== 400) {
|
||||
arangoHelper.arangoError("Query", "Successfully aborted.");
|
||||
}
|
||||
self.removeOutputEditor(counter);
|
||||
if (error.code === 409) {
|
||||
return;
|
||||
}
|
||||
if (error.code !== 400) {
|
||||
arangoHelper.arangoNotification("Query", "Successfully aborted.");
|
||||
}
|
||||
}
|
||||
|
||||
window.progressView.hide();
|
||||
|
|
Loading…
Reference in New Issue