Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
[branch-2.7.3] Bump Pulsar to 2.7.3.8-rc-3 (#966)
Browse files Browse the repository at this point in the history
Fix the spotbugs check like what #692 and #746 did.
  • Loading branch information
BewareMyPower committed Dec 13, 2021
1 parent 5da3a66 commit a6b9a23
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Expand Up @@ -66,6 +66,7 @@ public void closeProducer(Producer producer) {
// called after channel active
public void updateCtx() {
this.remoteAddress = kafkaRequestHandler.getRemoteAddress();
this.ctx = kafkaRequestHandler.ctx;
}

@Override
Expand Down Expand Up @@ -115,4 +116,13 @@ public void setMessagePublishBufferSize(long size) {
this.kopMessagePublishBufferSize = size;
}

@Override
public boolean equals(Object o) {
return super.equals(o);
}

@Override
public int hashCode() {
return super.hashCode();
}
}
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -47,7 +47,7 @@
<log4j2.version>2.13.3</log4j2.version>
<lombok.version>1.18.4</lombok.version>
<mockito.version>2.22.0</mockito.version>
<pulsar.version>2.7.2.6</pulsar.version>
<pulsar.version>2.7.3.8-rc-3</pulsar.version>
<slf4j.version>1.7.25</slf4j.version>
<spotbugs-annotations.version>3.1.8</spotbugs-annotations.version>
<testcontainers.version>1.15.1</testcontainers.version>
Expand Down

0 comments on commit a6b9a23

Please sign in to comment.