[azservicebus] updating changelog to reflect a release date of today (#23420)

Updating changeloog to reflect a release date of today
Add in some extra diagnostic code for flaky test.
This commit is contained in:
Richard Park 2024-09-10 14:14:28 -07:00 коммит произвёл GitHub
Родитель ca440fbcfe
Коммит 3de57f4e77
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 11 добавлений и 8 удалений

Просмотреть файл

@ -1,17 +1,11 @@
# Release History
## 1.7.2 (Unreleased)
### Features Added
### Breaking Changes
## 1.7.2 (2024-09-10)
### Bugs Fixed
- Fixed a bug where cancelling RenewMessageLock() calls could cause hangs in future RenewMessageLock calls. (PR#23400)
### Other Changes
## 1.7.1 (2024-05-20)
### Bugs Fixed

Просмотреть файл

@ -1114,12 +1114,21 @@ func TestReceiverConnectionTimeout(t *testing.T) {
// check that the log messages made it in.
recovered := false
for _, log := range getLogs() {
logs := getLogs()
for _, log := range logs {
if strings.Contains(log, "Recovered connection and links") {
recovered = true
}
}
if !recovered {
// dump out the logs so we can see what happened instead...
for _, log := range logs {
t.Logf("LOG: %s", log)
}
}
require.True(t, recovered)
log.Printf("\n\n\nDone with renew message lock, lock expiry time: %s\n\n\n", messages[0].LockedUntil)