mirror of https://github.com/Icinga/icinga2.git
Merge pull request #5335 from Icinga/fix/influxdb-windows
Windows build fix for InfluxdbWriter
This commit is contained in:
commit
2dc82138e3
|
@ -228,7 +228,7 @@ String InfluxdbWriter::FormatInteger(int val)
|
|||
|
||||
String InfluxdbWriter::FormatBoolean(bool val)
|
||||
{
|
||||
return String(val);
|
||||
return val ? "true" : "false";
|
||||
}
|
||||
|
||||
void InfluxdbWriter::SendPerfdata(const Dictionary::Ptr& tmpl, const Checkable::Ptr& checkable, const CheckResult::Ptr& cr, double ts)
|
||||
|
|
Loading…
Reference in New Issue