mirror of https://github.com/Icinga/icinga2.git
Merge pull request #8940 from Icinga/bugfix/redisconnection-reset-callback
RedisConnection: copy callback before calling it
This commit is contained in:
commit
f4b2bbc7af
|
@ -331,8 +331,10 @@ void RedisConnection::Connect(asio::yield_context& yc)
|
|||
|
||||
Log(m_Parent ? LogNotice : LogInformation, "IcingaDB", "Connected to Redis server");
|
||||
|
||||
if (m_ConnectedCallback) {
|
||||
m_ConnectedCallback(yc);
|
||||
// Operate on a copy so that the callback can set a new callback without destroying itself while running.
|
||||
auto callback (m_ConnectedCallback);
|
||||
if (callback) {
|
||||
callback(yc);
|
||||
}
|
||||
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue