-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Fix it #620
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
Conversation
com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "username" (class com.github.dockerjava.api.model.AuthConfig), not marked as ignorable (0 known properties: ])
at [Source: {
"username": "jdoe",
"password": "secret",
"email": "[email protected]"
}
This reverts commit 3c9a2ce.
|
|
||
| try { | ||
| InputStream inputStream = new WrappedResponseInputStream(response); | ||
| try (InputStream inputStream = new WrappedResponseInputStream(response)) { |
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.
@marcuslinke resource leak fix
|
@marcuslinke i tried upgrade to jersey version that contains fix for your issue, but got Have you seen this error before? |
|
@KostyaSha No, haven't seen this before. Will try to reproduce locally... |
|
@marcuslinke i see a lot of different fails (jersey, hijack, connection pool), trying to split everything to small portions now. |
|
$ export DOCKER_HOST="unix:///var/run/docker.sock" |
|
$ export DOCKER_HOST="tcp://127.0.0.1:2375" |
|
One IT now green https://travis-ci.org/docker-java/docker-java/jobs/143116581 ! perfect |
|
And unix may fail because i switched deps... |
|
@marcuslinke don't worry i will make clean PR, in process.. |
|
Everything beside junix socket update was merged. closing. |
trying fix ITs with mass changes
closes #491
This change is