Skip to content

Commit

Permalink
Merge pull request #527 from danielwegener/patch-1
Browse files Browse the repository at this point in the history
Fix DockerAccessWHC.removeNetwork exception msg
  • Loading branch information
rhuss authored Jul 29, 2016
2 parents 16ade30 + 825b89c commit 163ed8c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ public boolean removeNetwork(String networkId)
int status = delegate.delete(url, HTTP_OK, HTTP_NO_CONTENT, HTTP_NOT_FOUND);
return status == HTTP_OK || status == HTTP_NO_CONTENT;
} catch (IOException e) {
throw new DockerAccessException(e, "Unable to remove container [%s]", networkId);
throw new DockerAccessException(e, "Unable to remove network [%s]", networkId);
}
}

Expand Down

0 comments on commit 163ed8c

Please sign in to comment.