8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22a527f commit 78fc6aaCopy full SHA for 78fc6aa
CHANGELOG
@@ -1,6 +1,9 @@
1
devel
2
-----
3
4
+* the query editor within the web ui is now catching http 501 responses
5
+ propertly.
6
+
7
* upgraded JEMalloc version to 5.1.0
8
9
* use `-std=c++14` for ArangoDB compilation
js/apps/system/_admin/aardvark/APP/frontend/js/views/queryView.js
@@ -2336,7 +2336,7 @@
2336
if (error.code === 409) {
2337
return;
2338
}
2339
- 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) {
2340
arangoHelper.arangoNotification('Query', 'Successfully aborted.');
2341
2342
0 commit comments