Browse Source

replicate commit 38431171a502370ccf8c447c7ecbfe807384d71 to async codebase

pull/27/head
Alex Nørgaard 1 year ago
committed by GitHub
parent
commit
35b2c74732
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