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 83c1b08 commit a13f68bCopy full SHA for a13f68b
CHANGELOG
@@ -1,6 +1,9 @@
1
devel
2
-----
3
4
+* in a cluster environment, the arangod process now exits if wrong credentials
5
+ are used during the startup process
6
+
7
* fixes validation of allowed or not allowed foxx service mount paths within
8
the Web UI
9
arangod/Agency/AgencyComm.cpp
@@ -1221,6 +1221,12 @@ bool AgencyComm::ensureStructureInitialized() {
1221
LOG_TOPIC(TRACE, Logger::AGENCYCOMM) << "Found an initialized agency";
1222
break;
1223
}
1224
+ } else {
1225
+ if (result.httpCode() == 401) {
1226
+ // unauthorized
1227
+ LOG_TOPIC(FATAL, Logger::STARTUP) << "Unauthorized. Wrong credentials.";
1228
+ FATAL_ERROR_EXIT();
1229
+ }
1230
1231
1232
LOG_TOPIC(TRACE, Logger::AGENCYCOMM)
0 commit comments