Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions aiokdb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ class Nulls:
c: str = " "
e: float = float("nan")
f: float = float("nan")
uu: uuid.UUID = uuid.UUID("00000000-0000-0000-0000-000000000000")


class Infs:
Expand Down
2 changes: 1 addition & 1 deletion aiokdb/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ async def handle_connection(
pass


async def start_qserver(port: int, context: ServerContext) -> Any:
async def start_qserver(port: int, context: ServerContext) -> asyncio.Server:
logging.info(f"opening KDB-q IPC server on port {port}")
server = await asyncio.start_server(partial(handle_connection, context), "", port)
await context.start_tasks()
Expand Down
Loading