You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a remote server after clicking on the Verify button it tries to connect. This attempts 10 iterations (timeout is 5000 and interval is 500), but each javax.management.remote.JMXConnector.connect() call takes about 30s and it does not check for cancel after each attempt so this can take a long time.
Fix the AbstractRemoteServerComposite.connect method to call the basic connect which does not take a time out and interval and do the looping itself, checking for cancel after each attempt (the progress monitor will need to be passed in).
The text was updated successfully, but these errors were encountered:
When creating a remote server after clicking on the Verify button it tries to connect. This attempts 10 iterations (timeout is 5000 and interval is 500), but each javax.management.remote.JMXConnector.connect() call takes about 30s and it does not check for cancel after each attempt so this can take a long time.
Fix the AbstractRemoteServerComposite.connect method to call the basic connect which does not take a time out and interval and do the looping itself, checking for cancel after each attempt (the progress monitor will need to be passed in).
The text was updated successfully, but these errors were encountered: