Skip to content

Commit

Permalink
deps: version bump kafka to the latest version (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpcollins-google committed Sep 21, 2022
1 parent 06a376e commit a2875bc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -27,7 +27,7 @@
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>3.1.0</version>
<version>3.2.3</version>
</dependency>
<dependency>
<groupId>com.google.api</groupId>
Expand Down
Expand Up @@ -597,6 +597,11 @@ public void enforceRebalance() {
logger.atWarning().log("Calling enforceRebalance on a Pub/Sub Lite Consumer is a no-op.");
}

@Override
public void enforceRebalance(String reason) {
logger.atWarning().log("Calling enforceRebalance on a Pub/Sub Lite Consumer is a no-op.");
}

@Override
public OptionalLong currentLag(TopicPartition topicPartition) {
logger.atWarning().log("Calling currentLag on a Pub/Sub Lite Consumer always returns empty.");
Expand Down

0 comments on commit a2875bc

Please sign in to comment.