Remove pdb.

This commit is contained in:
Steve Pulec 2017-02-18 09:31:47 -05:00
parent 6785d359d3
commit d0fe1a0956

View File

@ -19,10 +19,7 @@ class KinesisResponse(BaseResponse):
@property
def is_firehose(self):
try:
host = self.headers.get('host') or self.headers['Host']
except KeyError:
import pdb;pdb.set_trace()
host = self.headers.get('host') or self.headers['Host']
return host.startswith('firehose')
def create_stream(self):