fix athena calls that do not use params

pull/20482/head
Greg Hogan 2021-03-25 17:57:40 -07:00
parent 806226820c
commit b88ca985d6
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ def jsonrpc_handler(end_event):
while not end_event.is_set():
try:
data = recv_queue.get(timeout=1)
if "method" in data and "params" in data:
if "method" in data:
response = JSONRPCResponseManager.handle(data, dispatcher)
send_queue.put_nowait(response.json)
elif "result" in data and "id" in data: