Skip to content

Commit

Permalink
[azservicebus] Adjust version and changelog, small test change (#22256)
Browse files Browse the repository at this point in the history
* Adjust version and changelog.
* Make a test a bit more robust by creating a larger set of messages to pull.
  • Loading branch information
richardpark-msft authored Jan 17, 2024
1 parent 58ca6be commit f17d3c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sdk/messaging/azservicebus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.5.1 (2024-01-16)
## 1.6.0 (2024-01-17)

### Features Added

Expand Down
2 changes: 1 addition & 1 deletion sdk/messaging/azservicebus/internal/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
package internal

// Version is the semantic version number
const Version = "v1.5.1"
const Version = "v1.6.0"
2 changes: 1 addition & 1 deletion sdk/messaging/azservicebus/receiver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@ func TestReceiveWithDifferentWaitTime(t *testing.T) {
bigBody := make([]byte, 1000)

// send a bunch of messages
for i := 0; i < 1000; i++ {
for i := 0; i < 10000; i++ {
err := batch.AddMessage(&Message{
Body: bigBody,
}, nil)
Expand Down

0 comments on commit f17d3c3

Please sign in to comment.