Merge pull request #7654 from Icinga/bugfix/apilistener-const-sslcontext

Fix TLS context not being updated on signed certificate messages on agents
This commit is contained in:
Michael Friedrich 2019-11-27 09:18:16 +01:00 committed by GitHub
commit aee80d7f24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -416,7 +416,7 @@ bool ApiListener::AddListener(const String& node, const String& service)
Log(LogInformation, "ApiListener")
<< "Started new listener on '[" << localEndpoint.address() << "]:" << localEndpoint.port() << "'";
IoEngine::SpawnCoroutine(io, [this, acceptor, sslContext](asio::yield_context yc) { ListenerCoroutineProc(yc, acceptor, sslContext); });
IoEngine::SpawnCoroutine(io, [this, acceptor](asio::yield_context yc) { ListenerCoroutineProc(yc, acceptor, m_SSLContext); });
UpdateStatusFile(localEndpoint);