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 ae00d35 commit 3e0a09eCopy full SHA for 3e0a09e
lib/Ssl/SslServerFeature.cpp
@@ -117,16 +117,15 @@ void SslServerFeature::unprepare() {
117
void SslServerFeature::verifySslOptions() {
118
// check keyfile
119
if (_keyfile.empty()) {
120
- LOG_TOPIC(FATAL, arangodb::Logger::SSL) << "keyfile empty'" << _keyfile
121
- << "'";
+ LOG_TOPIC(FATAL, arangodb::Logger::SSL) << "no value specified for '--ssl.keyfile'";
122
FATAL_ERROR_EXIT();
123
}
124
125
// validate protocol
126
if (_sslProtocol <= SSL_UNKNOWN || _sslProtocol >= SSL_LAST) {
127
LOG_TOPIC(FATAL, arangodb::Logger::SSL)
128
<< "invalid SSL protocol version specified. Please use a valid "
129
- "value for '--ssl.protocol'.";
+ "value for '--ssl.protocol'";
130
131
132
0 commit comments