Add maxHttpConnections for Influxdb 0.9.0 code path

Change-Id: Ief4759610c3b8570ed58170265e069458d731540
This commit is contained in:
Deklan Dieterly 2015-02-20 09:06:29 -07:00
parent 75df2f988d
commit aae8034869

View File

@ -24,6 +24,16 @@ public class InfluxDbConfiguration {
return version;
}
/**
* Used only for Influxdb V9.
*/
@JsonProperty
int maxHttpConnections;
public int getMaxHttpConnections() {
return maxHttpConnections;
}
@JsonProperty
String name;