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.2.17 (2018-10-24)
2
2
--------------------
3
3
4
+ * in a cluster environment, the arangod pr
8000
ocess now exits if wrong credentials
5
+ are used during the startup process.
6
+
4
7
* upgraded arangodb starter version to 0.13.7
5
8
6
9
* when returning memory to the OS, use the same memory protection flags as
Original file line number Diff line number Diff line change @@ -1198,6 +1198,12 @@ bool AgencyComm::ensureStructureInitialized() {
1198
1198
LOG_TOPIC (TRACE, Logger::AGENCYCOMM) << " Found an initialized agency" ;
1199
1199
break ;
1200
1200
}
1201
+ } else {
1202
+ if (result.httpCode () == 401 ) {
1203
+ // unauthorized
1204
+ LOG_TOPIC (FATAL, Logger::STARTUP) << " Unauthorized. Wrong credentials." ;
1205
+ FATAL_ERROR_EXIT ();
1206
+ }
1201
1207
}
1202
1208
1203
1209
LOG_TOPIC (TRACE, Logger::AGENCYCOMM)
You can’t perform that action at this time.
0 commit comments