Add gzip flag to Influxdb Configuration

Change-Id: I53e714be7e848013856a7ba13c5622b1623763d6
This commit is contained in:
Deklan Dieterly 2015-04-07 10:37:01 -06:00
parent 065fb0dcdd
commit 92b5934545

View File

@ -34,6 +34,16 @@ public class InfluxDbConfiguration {
return maxHttpConnections;
}
/**
* Used only for Influxdb V9.
*/
@JsonProperty
boolean gzip;
public boolean getGzip() {
return gzip;
}
@JsonProperty
String name;