Browse Source

Merge pull request #27 from AbstractUmbra/patch-1

Replicate `enforce_id` commit to async codebase
pull/31/head 2.4.6
Richard Neumann 1 year ago
committed by GitHub
parent
commit
5b2cb6c5a4
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      rcon/source/async_rcon.py

3
rcon/source/async_rcon.py

@ -52,6 +52,7 @@ async def rcon(
frag_threshold: int = 4096,
frag_detect_cmd: str = "",
timeout: int | None = None,
enforce_id: bool = True,
) -> str:
"""Run a command asynchronously."""
@ -77,7 +78,7 @@ async def rcon(
response = await communicate(reader, writer, request)
await close(writer)
if response.id != request.id:
if enforce_id and response.id != request.id:
raise SessionTimeout()
return response.payload.decode(encoding)

Loading…
Cancel
Save