Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions sdk/servicebus/azure-servicebus/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

### Bugs Fixed

- Fixed a broken f-string present in a `ValueError` when using the async client ([37695](https://github.com/Azure/azure-sdk-for-python/issues/37695))

### Other Changes

## 7.12.3 (2024-09-19)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ async def create_message_batch(
if max_size_in_bytes and max_size_in_bytes > self._max_message_size_on_link:
raise ValueError(
f"Max message size: {max_size_in_bytes} is too large, "
"acceptable max batch size is: {self._max_message_size_on_link} bytes."
f"acceptable max batch size is: {self._max_message_size_on_link} bytes."
)

return ServiceBusMessageBatch(
Expand Down
Loading