mirror of
https://github.com/EDCD/EDDN.git
synced 2025-06-18 16:03:02 +03:00
Fix wrong argument in gateway
This commit is contained in:
parent
bde962ade1
commit
69f7134a94
@ -142,7 +142,7 @@ def parse_and_error_handle(data):
|
|||||||
|
|
||||||
# Sends the parsed MarketOrderList or MarketHistoryList to the Announcers
|
# Sends the parsed MarketOrderList or MarketHistoryList to the Announcers
|
||||||
# as compressed JSON.
|
# as compressed JSON.
|
||||||
gevent.spawn(push_message, (simplejson.dumps(parsed_message), parsed_message['$schemaRef']))
|
gevent.spawn(push_message, simplejson.dumps(parsed_message), parsed_message['$schemaRef'])
|
||||||
logger.info("Accepted %s upload from %s" % (
|
logger.info("Accepted %s upload from %s" % (
|
||||||
parsed_message, get_remote_address()
|
parsed_message, get_remote_address()
|
||||||
))
|
))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user