8000 catch 501 (not implemented) in the query editor (ui) (#6523) · arangodb/arangodb@78fc6aa · GitHub
[go: up one dir, main page]

Skip to content

Commit 78fc6aa

Browse files
hkernbachjsteemann
authored andcommitted
catch 501 (not implemented) in the query editor (ui) (#6523)
1 parent 22a527f commit 78fc6aa

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
devel
22
-----
33

4+
* the query editor within the web ui is now catching http 501 responses
5+
propertly.
6+
47
* upgraded JEMalloc version to 5.1.0
58

69
* use `-std=c++14` for ArangoDB compilation

js/apps/system/_admin/aardvark/APP/frontend/js/views/queryView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2336,7 +2336,7 @@
23362336
if (error.code === 409) {
23372337
return;
23382338
}
2339-
if (error.code !== 400 && error.code !== 404 && error.code !== 500 && error.code !== 403) {
2339+
if (error.code !== 400 && error.code !== 404 && error.code !== 500 && error.code !== 403 && error.code !== 501) {
23402340
arangoHelper.arangoNotification('Query', 'Successfully aborted.');
23412341
}
23422342
}

0 commit comments

Comments
 (0)
0