mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-24 22:24:44 +02:00
InfluxdbWriter: don't leak sockets
refs #6989 (cherry picked from commit 2a6b122413dfc8762a7839bbe41c125455a17b5c)
This commit is contained in:
parent
c9d27e7baa
commit
1fc3a77c4a
@ -26,6 +26,7 @@
|
||||
#include "icinga/macroprocessor.hpp"
|
||||
#include "icinga/icingaapplication.hpp"
|
||||
#include "icinga/checkcommand.hpp"
|
||||
#include "base/defer.hpp"
|
||||
#include "base/tcpsocket.hpp"
|
||||
#include "base/configtype.hpp"
|
||||
#include "base/objectlock.hpp"
|
||||
@ -432,6 +433,8 @@ void InfluxdbWriter::Flush()
|
||||
if (!stream)
|
||||
return;
|
||||
|
||||
Defer close ([&stream]() { stream->Close(); });
|
||||
|
||||
Url::Ptr url = new Url();
|
||||
url->SetScheme(GetSslEnable() ? "https" : "http");
|
||||
url->SetHost(GetHost());
|
||||
|
Loading…
x
Reference in New Issue
Block a user