Skip to content

Commit 7b3fd4d

Browse files
dependabot[bot]jamtur01
authored andcommitted
Bump com.google.protobuf:protobuf-java in /riemann-java-client
Bumps [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) from 3.16.3 to 3.25.5. - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](protocolbuffers/protobuf@v3.16.3...v3.25.5) --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 510c192 commit 7b3fd4d

5 files changed

Lines changed: 289 additions & 235 deletions

File tree

README.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies.
3131

3232
## Example
3333

34-
``` java
34+
```java
3535
RiemannClient c = RiemannClient.tcp("my.riemann.server", 5555);
3636
c.connect();
3737
c.event().
@@ -53,10 +53,10 @@ will fail instantaneously when no connection is available.
5353
the write possible. `.send()` returns a
5454
`io.riemann.riemann.client.IPromise` containing the response from the
5555
write (which also supports Clojure's Deref protocol). If you do not
56-
deref this promise, the client makes *no* guarantees about event
56+
deref this promise, the client makes _no_ guarantees about event
5757
delivery: it will, for example, discard writes when there are too many
5858
messages outstanding on the wire, when Riemann cannot keep up with load,
59-
and so on. You *should* deref sends at some point, if for no other
59+
and so on. You _should_ deref sends at some point, if for no other
6060
reason than to handle backpressure.
6161

6262
Calling `.deref()` will throw a ServerError if the server responds with

metrics3-riemann-reporter/src/test/java/com/codahale/metrics/riemann/RiemannReporterTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ private void verifyNoReporting() throws IOException {
8888
final InOrder inOrder = inOrder(riemann, eventDSL, client);
8989
inOrder.verify(riemann).connect();
9090
inOrder.verify(client, never()).event();
91-
verifyZeroInteractions(eventDSL);
91+
verifyNoInteractions(eventDSL);
9292
inOrder.verify(client).flush();
9393
inOrder.verifyNoMoreInteractions();
9494
}

metrics4-riemann-reporter/src/test/java/com/codahale/metrics/riemann/RiemannReporterTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ private void verifyNoReporting() throws IOException {
8888
final InOrder inOrder = inOrder(riemann, eventDSL, client);
8989
inOrder.verify(riemann).connect();
9090
inOrder.verify(client, never()).event();
91-
verifyZeroInteractions(eventDSL);
91+
verifyNoInteractions(eventDSL);
9292
inOrder.verify(client).flush();
9393
inOrder.verifyNoMoreInteractions();
9494
}

0 commit comments

Comments
 (0)