diff --git a/confluent_server/confluent/asynchttp.py b/confluent_server/confluent/asynchttp.py index 1072650c..731d8726 100644 --- a/confluent_server/confluent/asynchttp.py +++ b/confluent_server/confluent/asynchttp.py @@ -65,11 +65,11 @@ class AsyncTermRelation(object): # This allows the async handler to know the context of # outgoing data to provide to calling code def __init__(self, termid, asynchdl): - self.async = asynchdl + self.asynchdl = asynchdl self.termid = termid def got_data(self, data): - self.async.add(self.termid, data) + self.asynchdl.add(self.termid, data) class AsyncSession(object):