1
0
Fork 0

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

This commit is contained in:
Heiko 2018-09-18 17:46:48 +02:00 committed by Jan
parent 316a32e545
commit 5595317ecb
2 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,14 @@
v3.3.17 (XXXX-XX-XX)
--------------------
* the query editor within the web ui is now catching http 501 responses
propertly.
v3.3.16 (2018-09-17)
--------------------
* fixed issue #6495 (Document not found when removing records)
* fixed undefined behavior is cluster plan-loading procedure that may have

View File

@ -2153,7 +2153,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.');
}
}