Skip to content

Commit b6b5f26

Browse files
committed
docs: cleanup 30-second blip sample
1 parent 641bdcf commit b6b5f26

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

docs/notifications.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -221,24 +221,25 @@ Timeline (worst case - network down):
221221
222222
### 30-Second Power Blip
223223
224-
During a brief power blip, power may be restored within seconds or minutes — well before any shutdown triggers fire. However, public Internet often remains unreachable for several more minutes while local network equipment boots up (router, modem, switches, WiFi APs).
224+
During a brief power blip, power may be restored within seconds or minutes — well before any shutdown triggers fire. However, public Internet often remains unreachable for several more minutes while local network equipment boots up (router, modem, switches, WiFi APs etc).
225225
226226
The persistent retry architecture handles this gracefully: notifications queue instantly and the worker keeps retrying every `retry_interval` seconds. As soon as the network is back, all messages are delivered in order — giving you full visibility into what happened.
227227
228228
```
229229
Timeline (brief power blip, network slow to recover):
230230
─────────────────────────────────────────────────────────────────
231231
0s │ Power lost, "Power Lost" notification queued
232-
5s │ Retry #1 - network down (router booting)
232+
5s │ Retry #1 - network down
233233
10s │ Retry #2 - still failing
234234
15s │ Retry #3 - still failing
235235
20s │ Retry #4 - still failing
236236
28s │ Power restored, "Power Restored" notification queued
237237
35s │ Retry #5 - still failing (switches coming up)
238-
40s │ Retry #6 - still failing (WiFi AP booting)
239-
50s │ Retry #7 - still failing (ISP modem syncing)
238+
40s | Retry #6 - still failing (router booting)
239+
45s │ Retry #7 - still failing (WiFi AP booting)
240+
50s │ Retry #8 - still failing (ISP modem syncing)
240241
60s │ Network is back!
241-
60s │ Retry #8 - SUCCESS! ✓ "Power Lost" delivered
242+
60s │ Retry #9 - SUCCESS! ✓ "Power Lost" delivered
242243
60s │ ✓ "Power Restored" delivered (next in queue)
243244
─────────────────────────────────────────────────────────────────
244245
Both notifications delivered despite 60-second network outage

0 commit comments

Comments
 (0)