From de06cb1c3487f5fed0edd17f0271a44c98708211 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 10 Feb 2014 10:00:10 -0500 Subject: [PATCH] Fix problem where sockapi enablement broke http api --- confluent/httpapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent/httpapi.py b/confluent/httpapi.py index abdf5d2a..145250f0 100644 --- a/confluent/httpapi.py +++ b/confluent/httpapi.py @@ -342,7 +342,7 @@ def _assemble_json(responses, resource, url): rspdata = {} for rsp in responses: if isinstance(rsp, confluent.messages.LinkRelation): - haldata = rsp.raw_rel() + haldata = rsp.raw() for hk in haldata.iterkeys(): if hk in links: if isinstance(links[hk], list):