Skip to content

Commit

Permalink
Fix DockerAccessWHC.removeNetwork exception msg
Browse files Browse the repository at this point in the history
Should be network, not? :)
  • Loading branch information
danielwegener authored Jul 29, 2016
1 parent 083322c commit 825b89c
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 825b89c

Please sign in to comment.