Maxim Nesen
Maxim Nesen
@bshannon - required change implemented, could you please take a look?
yes, you are right, the target for plugin shall be adjusted in order to work from the lower lever directory. However in order to work, the api's parent shall be...
which JDK, which Jersey, OS, probably more extended stack trace?
which is the exact version of Jersey You've upgraded to?
Hi @csmwww , thank you for the great investigation, it looks really impressive! Regarding the note about ``"InjectionManagerFactory not found"`` - indeed, the API has changed after the version 2.25.1....
`disableConcurrentBuilds()` means that if a job is already running (due to a PR for example), another job won't be triggered until the actual job is finished. It can be multithreaded....
However, I do not see anything bad if a part of a build in the queue starts before the whole previous build run is finished. This reduces timeout time for...
I've implemented [a test](https://github.com/senivam/jersey/blob/2x_nettyConnectorTimeout/tests/e2e-client/src/test/java/org/glassfish/jersey/tests/e2e/client/nettyconnector/NettyConnectorTimeoutTest.java) to reproduce the described behavior. Timeout is being set: ``` protected void configureClient(ClientConfig config) { config.property(ClientProperties.READ_TIMEOUT, timeOutValue) .connectorProvider(new NettyConnectorProvider()); } ``` and instead of the server...
if you modify the given test to use connect tiomeout: ``` protected void configureClient(ClientConfig config) { config.property(ClientProperties.CONNECT_TIMEOUT, timeOutValue) .connectorProvider(new NettyConnectorProvider()); } ``` and the target would be ``` public WebTarget...
for the 60s custom timeout Netty Client fails as well: ``` javax.ws.rs.ProcessingException: connection timed out after 60000 ms: /8.8.8.8:80 at org.glassfish.jersey.netty.connector.NettyConnector.apply(NettyConnector.java:172) at org.glassfish.jersey.client.ClientRuntime.invoke(ClientRuntime.java:300) at org.glassfish.jersey.client.JerseyInvocation.lambda$invoke$0(JerseyInvocation.java:674) at org.glassfish.jersey.client.JerseyInvocation.call(JerseyInvocation.java:709) at org.glassfish.jersey.client.JerseyInvocation.lambda$runInScope$3(JerseyInvocation.java:703) at...