You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Queries throw an exception about missing required parameter q when using the latest influxdb-java 2.22 with the enableGzip set to true. I am using influxdb-java 2.22, influxdb-server 1.8.10 on CentOS 7.
This is the exception that gets thrown. My process's first query to influxdb is to create the database which this stack is for.
org.influxdb.InfluxDBException: missing required parameter "q"
at org.influxdb.InfluxDBException.buildExceptionFromErrorMessage(InfluxDBException.java:161) ~[influxdb-java-2.22.jar:?]
at org.influxdb.InfluxDBException.buildExceptionForErrorState(InfluxDBException.java:189) ~[influxdb-java-2.22.jar:?]
at org.influxdb.impl.InfluxDBImpl.execute(InfluxDBImpl.java:844) ~[influxdb-java-2.22.jar:?]
at org.influxdb.impl.InfluxDBImpl.executeQuery(InfluxDBImpl.java:833) ~[influxdb-java-2.22.jar:?]
at org.influxdb.impl.InfluxDBImpl.createDatabase(InfluxDBImpl.java:743) ~[influxdb-java-2.22.jar:?]
If I leave enableGzip set to false, everything works.