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