We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b96a87d commit f8823b8Copy full SHA for f8823b8
src/main/java/com/rabbitmq/stream/impl/StreamConsumer.java
@@ -444,9 +444,8 @@ boolean sacActive() {
444
}
445
446
boolean canTrack() {
447
- // FIXME check the condition to be able to track
448
- return ((this.state() == OPENING || this.state() == OPEN)
449
- || (this.trackingClient == null && this.state() == RECOVERING))
+ return (this.state() == OPENING || this.state() == OPEN)
+ && (this.trackingClient != null && this.state() != RECOVERING)
450
&& this.name != null;
451
452
0 commit comments