Skip to content

Commit a1c7b61

Browse files
committed
Prior to wait_test branch.
1 parent 62d2bc4 commit a1c7b61

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ Methods (asynchronous):
462462
1. `readline` No args. Pauses until data received. Returns a line.
463463
2. `write` Args: `buf`, `qos=True`, `wait=True`. `buf` holds a line of text.
464464
If `qos` is set, the system guarantees delivery. If it is clear messages may
465-
(rarely) be lost in the event of an outage.__
465+
(rarely) be lost in the event of an outage.
466466
The `wait` arg determines the behaviour when multiple concurrent writes are
467467
launched with `qos` set. See [Quality of service](./README.md#7-quality-of-service).
468468

iot/client.mpy

-15 Bytes
Binary file not shown.

iot/client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,6 @@ async def _write(self, line):
220220

221221
# send fail. _send has triggered _evfail. .run clears _evok.
222222
await asyncio.sleep_ms(0) # Ensure .run is scheduled
223-
assert not self._evok.is_set() # TEST
224223

225224
# Handle qos. Retransmit until matching ACK received.
226225
# ACKs typically take 200-400ms to arrive.

0 commit comments

Comments
 (0)