Skip to content

Commit

Permalink
cleanup deps, update grpc/proto
Browse files Browse the repository at this point in the history
  • Loading branch information
Hellblazer committed May 26, 2024
1 parent 9123b22 commit 3c9e0ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ protected Gossip gossip(Fireflies link, int ring) {
.setRing(ring)
.setGossip(commonDigests())
.build());
log.info("gossiping with: {} on: {}", link.getMember().getId(), node.getId());
log.trace("gossiping with: {} on: {}", link.getMember().getId(), node.getId());
try {
return link.gossip(gossip);
} catch (Throwable e) {
Expand Down Expand Up @@ -1930,7 +1930,7 @@ public Gossip rumors(SayWhat request, Digest from) {
final var digests = request.getGossip();
if (!successor.equals(node)) {
g = redirectTo(member, ring, successor, digests);
log.info("Redirected: {} on: {}", member.getId(), node.getId());
log.debug("Redirected: {} on: {}", member.getId(), node.getId());
} else {
g = Gossip.newBuilder()
.setNotes(processNotes(from, BloomFilter.from(digests.getNoteBff()), params.fpr()))
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
<jooq.version>3.18.15</jooq.version>
<bc.version>1.78</bc.version>
<logback.version>1.4.12</logback.version>
<grpc.version>1.62.2</grpc.version>
<protobuf.version>3.25.3</protobuf.version>
<grpc.version>1.64.0</grpc.version>
<protobuf.version>4.27.0</protobuf.version>
<liquibase.version>4.8.0</liquibase.version>
<netty.version>4.1.100.Final</netty.version>
<native.maven.plugin.version>0.9.27</native.maven.plugin.version>
Expand Down

0 comments on commit 3c9e0ed

Please sign in to comment.