-
Notifications
You must be signed in to change notification settings - Fork 164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Main for server v2.11 #1239
Main for server v2.11 #1239
Conversation
* Consumer Priority Group Overflow * Tests for Overflow plus Simplification Fetch * Tests for Overflow Simplification Iterate and Consume * use consumer-groups branch in build
@@ -680,6 +717,7 @@ public Builder(ConsumerConfiguration cc) { | |||
this.maxBatch = cc.maxBatch; | |||
this.maxBytes = cc.maxBytes; | |||
this.numReplicas = cc.numReplicas; | |||
this.pauseUntil = cc.pauseUntil; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This missing was a bug unrelated to 2.11
@@ -34,7 +33,7 @@ class NatsFetchConsumer extends NatsMessageConsumerBase implements FetchConsumer | |||
{ | |||
super(cachedConsumerInfo); | |||
|
|||
isNoWait = fetchConsumeOptions.isNoWait(); | |||
boolean isNoWait = fetchConsumeOptions.isNoWait(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not needed in the object, local is fine
# Conflicts: # src/main/java/io/nats/client/api/MessageBatchGetRequest.java
…sageGetRequest) back in
Replace net.i2p.crypto with BouncyCastle
# Conflicts: # src/main/java/io/nats/client/BaseConsumeOptions.java # src/test/java/io/nats/client/api/StreamConfigurationTests.java # src/test/java/io/nats/client/impl/JetStreamManagementTests.java
# Conflicts: # src/main/java/io/nats/client/BaseConsumeOptions.java
Main 2 11 merge safe
@@ -13,7 +13,7 @@ plugins { | |||
id 'signing' | |||
} | |||
|
|||
def jarVersion = "2.20.7" | |||
def jarVersion = "2.21.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Functionality requires a minor version
protected final boolean raiseStatusWarnings; | ||
|
||
@SuppressWarnings("rawtypes") // Don't need the type of the builder to get its vars | ||
protected BaseConsumeOptions(Builder b) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I figured out the correct way to do this
@SuppressWarnings("rawtypes") // Don't need the type of the builder to get its vars | ||
protected BaseConsumeOptions(Builder b) { | ||
protected BaseConsumeOptions(Builder<?, ?> b) { | ||
// Message / bytes is part of base and is calculated |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't 2.11 specific, but I had just made changes in this area, then realized I had better changes uncommitted, so put them here.
private FetchConsumeOptions(Builder b) { | ||
super(b); | ||
this.noWait = b.noWait; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not 2.11, again part of missed commit improvements after 2.10.26 changes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Consumer priority and overflow