Use connection pools.

This commit is contained in:
lain 2018-03-19 17:42:09 +01:00
commit ec83175100
5 changed files with 9 additions and 5 deletions

View file

@ -450,4 +450,8 @@ defmodule HTTPoisonMock do
def post(url, body, headers) do
{:error, "Not implemented the mock response for post #{inspect(url)}"}
end
def post(url, body, headers, options) do
{:error, "Not implemented the mock response for post #{inspect(url)}"}
end
end