Skip to content

Commit ba8b756

Browse files
committed
docs: update CHANGELOG.md
1 parent c40ae2a commit ba8b756

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
#### `influxdb-spring`:
66

7-
The `micrometer` v1.7.0 brings a [support](https://github.com/micrometer-metrics/micrometer/issues/1974) for InfluxDB 2.
8-
That is a reason why the [influxdb-spring](./spring) no longer needs provide a custom micrometer metrics exporter.
7+
The `micrometer` v1.7.0 brings [support](https://github.com/micrometer-metrics/micrometer/issues/1974) for InfluxDB 2.
8+
That is a reason why the [influxdb-spring](./spring) no longer needs provide a custom Micrometer metrics exporter.
99
Now you are able to use `micrometer-registry-influx`, for more info [see our docs](./spring/README.md#actuator-for-influxdb2-micrometer-registry).
1010

1111
### Features
12-
1. [#???](https://github.com/influxdata/influxdb-client-java/pull/???): Add support for Spring Boot 2.4 [spring]
12+
1. [#231](https://github.com/influxdata/influxdb-client-java/pull/231): Add support for Spring Boot 2.4 [spring]
1313

1414
## 2.3.0 [2021-06-04]
1515

client/src/test/java/com/influxdb/client/WriteApiTest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -742,18 +742,18 @@ void retryAttempts() throws InterruptedException {
742742

743743
WriteRetriableErrorEvent error = retriableListener.awaitCount(1).popValue();
744744
Assertions.assertThat(error.getThrowable()).isInstanceOf(InfluxException.class).hasMessage("attempt1");
745-
Assertions.assertThat(error.getRetryInterval()).isGreaterThan(100);
746-
Assertions.assertThat(error.getRetryInterval()).isLessThan(200);
745+
Assertions.assertThat(error.getRetryInterval()).isGreaterThanOrEqualTo(100);
746+
Assertions.assertThat(error.getRetryInterval()).isLessThanOrEqualTo(200);
747747

748748
error = retriableListener.awaitCount(1).popValue();
749749
Assertions.assertThat(error.getThrowable()).isInstanceOf(InfluxException.class).hasMessage("attempt2");
750-
Assertions.assertThat(error.getRetryInterval()).isGreaterThan(200);
751-
Assertions.assertThat(error.getRetryInterval()).isLessThan(400);
750+
Assertions.assertThat(error.getRetryInterval()).isGreaterThanOrEqualTo(200);
751+
Assertions.assertThat(error.getRetryInterval()).isLessThanOrEqualTo(400);
752752

753753
error = retriableListener.awaitCount(1).popValue();
754754
Assertions.assertThat(error.getThrowable()).isInstanceOf(InfluxException.class).hasMessage("attempt3");
755-
Assertions.assertThat(error.getRetryInterval()).isGreaterThan(400);
756-
Assertions.assertThat(error.getRetryInterval()).isLessThan(800);
755+
Assertions.assertThat(error.getRetryInterval()).isGreaterThanOrEqualTo(400);
756+
Assertions.assertThat(error.getRetryInterval()).isLessThanOrEqualTo(800);
757757

758758
successListener.awaitCount(1);
759759

0 commit comments

Comments
 (0)