Remove extraneous semicolons

(imported from commit 2077705c52e7255ab7ea1b4df71d2ae99f6018dc)
This commit is contained in:
Zev Benjamin
2013-12-04 14:45:06 -05:00
parent 6eeee0a4f3
commit 002df64811

View File

@@ -146,7 +146,7 @@ class SocketConnection(sockjs.tornado.SockJSConnection):
record_request_start_data(log_data) record_request_start_data(log_data)
msg = ujson.loads(msg) msg = ujson.loads(msg)
self.session.send_message({'req_id': msg['req_id'], 'type': 'ack'}); self.session.send_message({'req_id': msg['req_id'], 'type': 'ack'})
if msg['type'] == 'auth': if msg['type'] == 'auth':
log_data['extra'] += ']' log_data['extra'] += ']'
@@ -179,7 +179,7 @@ class SocketConnection(sockjs.tornado.SockJSConnection):
redis_key = req_redis_key(self.client_id, msg['req_id']) redis_key = req_redis_key(self.client_id, msg['req_id'])
with redis_client.pipeline() as pipeline: with redis_client.pipeline() as pipeline:
pipeline.hmset(redis_key, {'status': 'receieved'}); pipeline.hmset(redis_key, {'status': 'receieved'})
pipeline.expire(redis_key, 60 * 5) pipeline.expire(redis_key, 60 * 5)
pipeline.execute() pipeline.execute()