Skip to content

Commit

Permalink
Fix example value for max-message-size (#4792)
Browse files Browse the repository at this point in the history
* 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.

* backport

---------

Co-authored-by: Christina Ausley <christina.ausley@camunda.com>
  • Loading branch information
falko and christinaausley authored Dec 23, 2024
1 parent 19bba98 commit 9f20060
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/apis-tools/spring-zeebe-sdk/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9f20060

Please sign in to comment.