Skip to content

Commit 350b764

Browse files
authored
Merge pull request #2976 from shivamkm07/fix-mqttsetup-1.9
Remove backoffmaxretries from pubsub.mqtt metadata spec
2 parents 1da9cb4 + 495f88f commit 350b764

File tree

1 file changed

+0
-2
lines changed
  • daprdocs/content/en/reference/components-reference/supported-pubsub

1 file changed

+0
-2
lines changed

daprdocs/content/en/reference/components-reference/supported-pubsub/setup-mqtt.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ The above example uses secrets as plain strings. It is recommended to use a secr
4949
| caCert | Required for using TLS | Certificate Authority (CA) certificate in PEM format for verifying server TLS certificates. | `"-----BEGIN CERTIFICATE-----\n<base64-encoded DER>\n-----END CERTIFICATE-----"`
5050
| clientCert | Required for using TLS | TLS client certificate in PEM format. Must be used with `clientKey`. | `"-----BEGIN CERTIFICATE-----\n<base64-encoded DER>\n-----END CERTIFICATE-----"`
5151
| clientKey | Required for using TLS | TLS client key in PEM format. Must be used with `clientCert`. Can be `secretKeyRef` to use a secret reference. | `"-----BEGIN RSA PRIVATE KEY-----\n<base64-encoded PKCS8>\n-----END RSA PRIVATE KEY-----"`
52-
| backOffMaxRetries | N | The maximum number of retries to process the message before returning an error. Defaults to `"0"`, which means that no retries will be attempted. `"-1"` can be specified to indicate that messages should be retried indefinitely until they are successfully processed or the application is shutdown. The component will wait 5 seconds between retries. | `"3"`
53-
5452
### Communication using TLS
5553

5654
To configure communication using TLS, ensure that the MQTT broker (e.g. mosquitto) is configured to support certificates and provide the `caCert`, `clientCert`, `clientKey` metadata in the component configuration. For example:

0 commit comments

Comments
 (0)