From 5c742e77a92a56c3cd5353f2abc47860adc65302 Mon Sep 17 00:00:00 2001 From: Falko Menge Date: Wed, 18 Dec 2024 19:09:30 +0100 Subject: [PATCH 1/2] Fix example value for max-message-size @npepinpe once told me to use `zeebe.client.message.max-message-size=4194304`, which sounds like the default value and seems to be in bytes. If we use a too small example value, users may think the value is in megabytes. Obviously, we could also just document the unit but even then 3 bytes is likely not a workable value. --- docs/apis-tools/spring-zeebe-sdk/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/apis-tools/spring-zeebe-sdk/configuration.md b/docs/apis-tools/spring-zeebe-sdk/configuration.md index 6cff515bf51..5c644b42928 100644 --- a/docs/apis-tools/spring-zeebe-sdk/configuration.md +++ b/docs/apis-tools/spring-zeebe-sdk/configuration.md @@ -275,7 +275,7 @@ A custom maxMessageSize allows the client to receive larger or smaller responses camunda: client: zeebe: - max-message-size: 3 + max-message-size: 4194304 ``` ### Request timeout From 494e2ff37eb11004e996a9a2ffc15f3bfb4d8712 Mon Sep 17 00:00:00 2001 From: Christina Ausley Date: Mon, 23 Dec 2024 09:51:44 -0500 Subject: [PATCH 2/2] backport --- .../version-8.6/apis-tools/spring-zeebe-sdk/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versioned_docs/version-8.6/apis-tools/spring-zeebe-sdk/configuration.md b/versioned_docs/version-8.6/apis-tools/spring-zeebe-sdk/configuration.md index 6cff515bf51..5c644b42928 100644 --- a/versioned_docs/version-8.6/apis-tools/spring-zeebe-sdk/configuration.md +++ b/versioned_docs/version-8.6/apis-tools/spring-zeebe-sdk/configuration.md @@ -275,7 +275,7 @@ A custom maxMessageSize allows the client to receive larger or smaller responses camunda: client: zeebe: - max-message-size: 3 + max-message-size: 4194304 ``` ### Request timeout