We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
influxdata/influxdb-client-csharp#17
Calling InfluxDBClient.close should also close a created writeApi:
InfluxDBClient.close
writeApi
InfluxDBClient influxDBClient = InfluxDBClientFactory.create(influxdbConfig.getAddress(), influxdbConfig.getToken().toCharArray()); WriteApi writeApi = influxDBClient.getWriteApi(); writeApi.writeRecord("b1", "org1", WritePrecision.NS,"h2o_feet water_level=1.0 1") # unnecessary writeApi.close(); influxDBClient.close();
The text was updated successfully, but these errors were encountered:
bednar
Successfully merging a pull request may close this issue.
influxdata/influxdb-client-csharp#17
Calling
InfluxDBClient.close
should also close a createdwriteApi
:The text was updated successfully, but these errors were encountered: