docs(inputs.mqtt_consumer): Clarify persistent session and topic refresh (#14366)

This commit is contained in:
Joshua Powers 2023-11-30 04:03:50 -07:00 committed by GitHub
parent f48b8504b6
commit d1daa04ec5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -83,7 +83,9 @@ to use them.
## In order for this option to work you must also set client_id to identify
## the client. To receive messages that arrived while the client is offline,
## also set the qos option to 1 or 2 and don't forget to also set the QoS when
## publishing.
## publishing. Finally, using a persistent session will use the initial
## connection topics and not subscribe to any new topics even after
## reconnecting or restarting without a change in client ID.
# persistent_session = false
## If unset, a random client ID will be generated.

View File

@ -46,7 +46,9 @@
## In order for this option to work you must also set client_id to identify
## the client. To receive messages that arrived while the client is offline,
## also set the qos option to 1 or 2 and don't forget to also set the QoS when
## publishing.
## publishing. Finally, using a persistent session will use the initial
## connection topics and not subscribe to any new topics even after
## reconnecting or restarting without a change in client ID.
# persistent_session = false
## If unset, a random client ID will be generated.