When cdc/mixed-versions times out, it's "stuck" inside a goroutine polling for waitForResolvedTimestamps. The cancelled context doesn't result in return (from the goroutine), thereby causing spurious messages in the (build) log,
I230601 13:35:05.510614 1859568 github.com/Shopify/sarama/sarama.go:129 [kafka-producer] 19549 client/metadata fetching metadata for all topics from broker 34.85.226.188:9092
I230601 13:35:35.511739 1900680 github.com/Shopify/sarama/broker.go:201 [kafka-producer] 19550 Failed to connect to broker 34.85.226.188:9092: dial tcp 34.85.226.188:9092: i/o timeout
The dangling goroutine after the test timed out (and cluster was destroyed),
When
cdc/mixed-versions
times out, it's "stuck" inside a goroutine polling forwaitForResolvedTimestamps
. The cancelled context doesn't result in return (from the goroutine), thereby causing spurious messages in the (build) log,The dangling goroutine after the test timed out (and cluster was destroyed),
Jira issue: CRDB-28455