1
0
Fork 0

catch 501 (not implemented) in the query editor (ui) (#6523)

This commit is contained in:
Heiko 2018-09-18 17:46:15 +02:00 committed by Jan
parent 22a527f3e6
commit 78fc6aa758
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,9 @@
devel
-----
* the query editor within the web ui is now catching http 501 responses
propertly.
* upgraded JEMalloc version to 5.1.0
* use `-std=c++14` for ArangoDB compilation

View File

@ -2336,7 +2336,7 @@
if (error.code === 409) {
return;
}
if (error.code !== 400 && error.code !== 404 && error.code !== 500 && error.code !== 403) {
if (error.code !== 400 && error.code !== 404 && error.code !== 500 && error.code !== 403 && error.code !== 501) {
arangoHelper.arangoNotification('Query', 'Successfully aborted.');
}
}