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
It seems the OSS version of nexus only supports HTTP 1.1, which creates a problem when uploading:
** Uploading /u/ado/workspace/MortgageApplication/main/build-20240329.2/logs/build.20240329.171134.816.tar to http://10.3.20.96:28081/repository/testMD/null/build.20240329.171134.816/build.20240329.171134.816.tar...
Caught: java.util.concurrent.ExecutionException: java.io.IOException: HTTP/1.1 header parser received no bytes java.util.concurrent.ExecutionException: java.io.IOException: HTTP/1.1 header parser received no bytes
at ArtifactRepositoryHelpers.upload(ArtifactRepositoryHelpers.groovy:78) at PackageBuildOutputs.run(PackageBuildOutputs.groovy:459)
Caused by: java.io.IOException: HTTP/1.1 header parser received no bytes
Caused by: java.io.IOException: EDC5140I Broken pipe.
The solution is to force the HTTPClient to use HTTP 1.1 (version parameter of the Request builder):
It seems the OSS version of nexus only supports HTTP 1.1, which creates a problem when uploading:
The solution is to force the HTTPClient to use HTTP 1.1 (version parameter of the Request builder):
Is it possible to implement this mechanism via a command-line flag?
The text was updated successfully, but these errors were encountered: