Skip to content

Commit

Permalink
Add args to the message sent (for cursor)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericflo committed Sep 19, 2009
1 parent 911ab57 commit e41c0f2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions hurricane/handlers/comet/handler.py
Expand Up @@ -78,6 +78,7 @@ def comet_view(self, request):
data = { data = {
'body': simplejson.loads(request.body), 'body': simplejson.loads(request.body),
'headers': request.headers, 'headers': request.headers,
'arguments': request.arguments,
} }
message_kind = 'comet-%s' % (request.method,) message_kind = 'comet-%s' % (request.method,)
self.publish(Message(message_kind, datetime.now(), data)) self.publish(Message(message_kind, datetime.now(), data))
Expand Down

0 comments on commit e41c0f2

Please sign in to comment.