Skip to content

Commit

Permalink
(amihaiemil#52) Unix socket pooling
Browse files Browse the repository at this point in the history
As per PR review:

* Fixed javadoc
  • Loading branch information
llorllale committed Mar 20, 2018
1 parent bd38d70 commit c1b9271
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/java/com/amihaiemil/docker/LocalDocker.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,10 @@ public LocalDocker(final File unixSocket, final String version){
/**
* Local Docker engine.
* <p>
* Users may supply their own {@link HttpClient} that must register a unix
* socket factory.
* Users may supply their own {@link HttpClient} that must register a
* {@link UnixSocketFactory}.
* @param client The http client to use.
* @param version API version (e.g. v1.30).
* @see UnixSocketFactory
*/
public LocalDocker(final HttpClient client, final String version) {
super(client, URI.create("unix://localhost:80/" + version));
Expand Down

0 comments on commit c1b9271

Please sign in to comment.