[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:
Родитель
ca440fbcfe
Коммит
3de57f4e77
|
@ -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)
|
||||
|
|
Загрузка…
Ссылка в новой задаче