diva: fix binary requests not being awaited

This commit is contained in:
2025-09-16 21:31:27 -04:00
parent 3ad56306bf
commit 0c800759bb

View File

@ -100,7 +100,7 @@ class DivaServlet(BaseServlet):
try:
handler = getattr(self.base, f"handle_{bin_req_data['cmd']}_request")
resp = handler(bin_req_data)
resp = await handler(bin_req_data)
except AttributeError as e:
self.logger.warning(f"Unhandled {bin_req_data['cmd']} request {e}")