From 24aa1da0c77e2cd748f83e2083841ba134e85c15 Mon Sep 17 00:00:00 2001 From: Preben Ingvaldsen Date: Thu, 17 Jul 2014 14:35:32 -0700 Subject: [PATCH] Fix test failures Fix test failures introduced by previous commit by changing definition of Client protocl back to CloseableHttpAsyncClient. --- src/clj/puppetlabs/http/client/common.clj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/clj/puppetlabs/http/client/common.clj b/src/clj/puppetlabs/http/client/common.clj index 9dcace4..38f19b8 100644 --- a/src/clj/puppetlabs/http/client/common.clj +++ b/src/clj/puppetlabs/http/client/common.clj @@ -29,7 +29,8 @@ (def UrlOrString (schema/either schema/Str URL)) -(def Client HTTPClient) +-;; TODO: replace this with a protocol +-(def Client CloseableHttpAsyncClient) (def Headers {schema/Str schema/Str})