mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-22 13:15:39 +08:00
Minor fixes related to the SSL lib issue
https://discordapp.com/channels/539048679160676382/539925070550794240/691469857891418202
This commit is contained in:
committed by
Mat Sutcliffe
parent
1e789c0951
commit
76e42cc16e
@@ -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())
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user