Minor fixes related to the SSL lib issue

https://discordapp.com/channels/539048679160676382/539925070550794240/691469857891418202
This commit is contained in:
Klaus Basan
2020-03-23 22:28:35 +01:00
committed by Mat Sutcliffe
parent 1e789c0951
commit 76e42cc16e
3 changed files with 7 additions and 4 deletions

View File

@@ -430,7 +430,7 @@ namespace BlackCore
return msgs; return msgs;
} }
// getting here can means no "real" read success, and NO available cache // getting here means no "real" read success, and NO available cache
msgs.push_back(CStatusMessage(this).error(u"Setup not available, setup reading failed or timed out.")); msgs.push_back(CStatusMessage(this).error(u"Setup not available, setup reading failed or timed out."));
if (m_setupReader->getLastSetupReadErrorMessages().hasErrorMessages()) if (m_setupReader->getLastSetupReadErrorMessages().hasErrorMessages())
{ {

View File

@@ -65,6 +65,9 @@ namespace BlackCore
Q_ASSERT_X(sApp->isSetupAvailable(), Q_FUNC_INFO, "Setup not synchronized"); Q_ASSERT_X(sApp->isSetupAvailable(), Q_FUNC_INFO, "Setup not synchronized");
this->setObjectName("CWebDataServices"); this->setObjectName("CWebDataServices");
// SSL INFOs
CLogMessage(this).info(u"SSL supported: %1 Version: %2 (build version) %3 (library version)") << boolToYesNo(QSslSocket::supportsSsl()) << QSslSocket::sslLibraryBuildVersionString() << QSslSocket::sslLibraryVersionString();
// check if I need info objects // check if I need info objects
const bool readFromSwiftDb = dbReaderConfig.possiblyReadsFromSwiftDb(); // DB read access const bool readFromSwiftDb = dbReaderConfig.possiblyReadsFromSwiftDb(); // DB read access
const bool writeToSwiftDb = dbReaderConfig.possiblyWritesToSwiftDb(); // DB write access const bool writeToSwiftDb = dbReaderConfig.possiblyWritesToSwiftDb(); // DB write access