forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 1
merge #2
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
Closed
Closed
merge #2
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
… into KostyaSha-refactorKeys
* Implement Device parser Signed-off-by: Kanstantsin Shautsou <[email protected]> * Add more tests, fix.
…ocker-java#596) * Refactor configuration of SSL to allow override with custom config * Store SSLConfig instead SSLContext * avoid NPE * prepare release * Coding style changes
Allow null value. boolean <-> Boolean error
Fast build - without integration tests. ITs - against different docker versions.
- more badges - coverity verification on master on main (fast/successful) build.
* Fix hasItem in test * Disable toolbox only tests
JSON decoding disabled on /images/load command execution.
…java#683) * Fix docker-java#682 - Add LogPath to docker inspect response * Fix docker-java#682 - Add LogPath to docker inspect response - fixes after code review * Fix docker-java#682 - Add LogPath to docker inspect response - add javadoc * Fix docker-java#682 - Add LogPath to docker inspect response - clean test assertion
Wait more for this test
there are several problems in the original code: - not releasing `ByteBuf` queued; - queuing `ByteBuf` until all data is read what effectively leads to `OutOfDirectMemoryError` if the data read is too big. This happens if you try to copy too big file or folder from a container. To fix this `ResponseCallback` (which in `awaitResult()` waits in fact for `readComplete()` channel method invocation) replaced with `AsyncResultCallback`; - actually queuing `ByteBuf` anyway leads to `OutOfDirectMemoryError` if data consumption is slower (the next point) than obtaining it; - poor performance because of the byte-by-byte reads.
docker-java#700) * Bugfix:donot throw RuntimeException when a error occured in awaitCompletion(long,TimeUnit) * Fix indentation * fix format error,use docker-java-formatter.xml
The default connection pool timeout of Apache HTTP Client is -1 (unlimited)
Update .travis.yml
* Ability to set labels on image build (docker-java#681) * Check API version in new tests (docker-java#681) * remove unnecessary this (docker-java#681) * change withLabel to withLabels (docker-java#681)
…a#708) * Expose 'User' property on ExecCreateCmd (docker-java#707)
* Support nocopy option in volume binds (docker-java#688) * support volumes propagation flags, fixes docker-java#554 * renamed values to match java convention
File was moved in docker repository.
Version `3.0.6` was released, current snapshot is `3.0.7-SNAPSHOT`
merge from base
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.