Work around influxdb panic

This commit is contained in:
Michael Vines 2018-10-30 08:50:23 -07:00 committed by Grimes
parent 4d6c54272a
commit ae7222f0df
1 changed files with 3 additions and 1 deletions

View File

@ -48,7 +48,9 @@ impl InfluxDbMetricsWriter {
client.set_read_timeout(1 /*second*/);
client.set_write_timeout(1 /*second*/);
debug!("InfluxDB version: {:?}", client.get_version());
// TODO: Restore the next line once https://github.com/driftluo/InfluxDBClient-rs/pull/31
// is merged and published in the influxdb crate
//debug!("InfluxDB version: {:?}", client.get_version());
Some(client)
}
}