Skip to content
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
You switched accounts on another tab or window. Reload to refresh your session.
Dismiss alert
File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 1
1
v3.3.20 (XXXX-XX-XX)
2
2
--------------------
3
3
4
+ * in a cluster environment, the arangod process now exits if wrong credentials
5
+ are used during the startup process.
6
+
4
7
* Fixed an AQL bug where the optimize-traversals rule was falsely applied to
5
8
extensions with inline expressions and thereby ignoring them
6
9
Original file line number Diff line number Diff line change @@ -1221,6 +1221,12 @@ bool AgencyComm::ensureStructureInitialized() {
1221
1221
LOG_TOPIC (TRACE, Logger::AGENCYCOMM) << " Found an initialized agency" ;
1222
1222
break ;
1223
1223
}
1224
+ } else {
1225
+ if (result.httpCode () == 401 ) {
1226
+ // unauthorized
1227
+ LOG_TOPIC (FATAL, Logger::STARTUP) << " Unauthorized. Wrong credentials." ;
1228
+ FATAL_ERROR_EXIT ();
1229
+ }
1224
1230
}
1225
1231
1226
1232
LOG_TOPIC (TRACE, Logger::AGENCYCOMM)
You can’t perform that action at this time.
0 commit comments