Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add note about keep alive and relation to ping timeout #549

Merged
merged 1 commit into from
Jan 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion awsiot/mqtt5_client_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
between the point at which the client finishes transmitting one MQTT packet and the point it starts
sending the next. The client will use PINGREQ packets to maintain this property. If the responding
CONNACK contains a keep alive property value, then that is the negotiated keep alive value. Otherwise,
the keep alive sent by the client is the negotiated value.
the keep alive sent by the client is the negotiated value. keep_alive_interval_sec must be set to at
least 1 second greater than ping_timeout_ms (default 30,000 ms) or it will fail validation.
**username** (`str`): Username to connect with.
Expand Down
Loading