mirror of https://gitee.com/bigwinds/arangodb
catch 501 (not implemented) in the query editor (ui) (#6525)
This commit is contained in:
parent
316a32e545
commit
5595317ecb
|
@ -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
|
||||
|
|
|
@ -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.');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue