Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,9 @@
* An {@link InfluxDbWriter} that writes to an HTTP/S server using a {@link Client}.
*/
public class InfluxDbHttpWriter implements InfluxDbWriter {
private final Client client;
private final WebTarget influxLines;

public InfluxDbHttpWriter(final Client client, final String endpoint) {
this.client = client;
this.influxLines = client.target(endpoint);
}

Expand All @@ -36,9 +34,7 @@ public void writeBytes(final byte[] bytes) {
}

@Override
public void close() throws IOException {
client.close();
}
public void close() throws IOException {} // NOOP

// ===================================================================================================================
// Builder
Expand Down