Skip to content
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

Optional connectionTimeout property support added #159

Merged
merged 1 commit into from
Feb 17, 2020
Merged

Optional connectionTimeout property support added #159

merged 1 commit into from
Feb 17, 2020

Conversation

mP1
Copy link
Contributor

@mP1 mP1 commented Feb 17, 2020

Copy link
Member

@jamezp jamezp left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you don't have time to make this change small change I can definitely do that. This also looks like it resolves https://issues.redhat.com/browse/WFARQ-3. If you could add [WFARQ-3] as a prefix to the commit message that would be helpful. Again though I'm happy to do so :)

@@ -103,6 +103,12 @@ public final void start() throws LifecycleException {
.setPort(containerConfig.getManagementPort())
.setAuthenticationConfigUri(authenticationConfig);

// only "copy" the timeout if one was set.
final int connectionTimeout = containerConfig.getConnectionTimeout();
if(0 != connectionTimeout) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be if (connectionTimeout > 0). The internal code currently does handle this, but we should not rely on that.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changed to the gt test.

@jamezp jamezp merged commit 646d7cd into wildfly:master Feb 17, 2020
@mP1
Copy link
Contributor Author

mP1 commented Feb 20, 2020

@jamezp Any chance for a new release ?

@jamezp
Copy link
Member

jamezp commented Feb 20, 2020

@mP1 it's going to be at least a couple weeks before I'd be able to cut a release of this. It would be a beta release as well. Will that be an issue?

@mP1
Copy link
Contributor Author

mP1 commented Feb 21, 2020

@jamezp No just wondering, thanks for the reply

@QazerLab
Copy link

QazerLab commented Sep 23, 2020

@jamezp , is there a chance that this feature could be cherry-picked into and released within the 2.x release line? Alternatively, is there any ETA for 3.0.0 stabilization (i.e. being released as non-beta)?

@jamezp
Copy link
Member

jamezp commented Sep 23, 2020

@QazerLab Since it's more of a feature I'd rather not back port it to 2.x. For 3.0.0 I'd say it's pretty stable now. Any additional changes would be minor bug fixes and changes/fixes for the bootable JAR container. We're likely go final by mid October though.

@QazerLab
Copy link

@jamezp Thanks for clarification! I'll be waiting for 3.0.0 then.

@mP1 mP1 deleted the feature/Optional-connectionTimeout-property-support-added branch January 25, 2021 04:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants