fix(document): Document Pocasi disable notification and timeout retry exclusion
parent
c33f9454f7
commit
56ea41c143
|
|
@ -271,9 +271,9 @@ credentials and tick `Enable resending data to Windy` again.
|
||||||
|
|
||||||
- You are done.
|
- You are done.
|
||||||
|
|
||||||
As with Windy, three unexpected responses in a row switch resending off automatically and
|
As with Windy, three unexpected responses in a row switch resending off automatically, log
|
||||||
log the reason. The `Forwarding to Počasí Meteo` and `Forwarding status to Počasí Meteo`
|
the reason and raise a persistent notification. The `Forwarding to Počasí Meteo` and
|
||||||
diagnostic sensors show the current state.
|
`Forwarding status to Počasí Meteo` diagnostic sensors show the current state.
|
||||||
|
|
||||||
## WSLink notes
|
## WSLink notes
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -177,7 +177,9 @@ WINDY_URL = "https://stations.windy.com/api/v2/observation/update"
|
||||||
|
|
||||||
POCASI_CZ_URL: Final = "http://ms.pocasimeteo.cz"
|
POCASI_CZ_URL: Final = "http://ms.pocasimeteo.cz"
|
||||||
POCASI_CZ_SEND_MINIMUM: Final = 12 # minimal time to resend data
|
POCASI_CZ_SEND_MINIMUM: Final = 12 # minimal time to resend data
|
||||||
POCASI_CZ_MAX_RETRIES: Final = 3 # failed sends in a row before resending is disabled
|
# Failed sends in a row before resending is disabled. Timeouts are excluded on purpose -
|
||||||
|
# a slow upstream is transient, see the TimeoutError branch in `PocasiPush`.
|
||||||
|
POCASI_CZ_MAX_RETRIES: Final = 3
|
||||||
|
|
||||||
# Pocasi Meteo accepts Ecowitt only as a POST in the Ecowitt protocol itself - the
|
# Pocasi Meteo accepts Ecowitt only as a POST in the Ecowitt protocol itself - the
|
||||||
# station payload is forwarded verbatim rather than translated to PWS. Per their
|
# station payload is forwarded verbatim rather than translated to PWS. Per their
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue