Skip to content

Commit c0330dc

Browse files
author
Marcus Linke
committed
Fix issue #36
1 parent 7cfb62b commit c0330dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/github/dockerjava/client/command/AttachContainerCmd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ protected ClientResponse impl() throws DockerException {
124124
try {
125125
LOGGER.trace("POST: {}", webResource);
126126
return webResource.accept(MediaType.APPLICATION_OCTET_STREAM_TYPE)
127-
.post(ClientResponse.class, params);
127+
.post(ClientResponse.class);
128128
} catch (UniformInterfaceException exception) {
129129
if (exception.getResponse().getStatus() == 400) {
130130
throw new DockerException("bad parameter");

0 commit comments

Comments
 (0)