You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix a flaky logstash output test for the `deadlockListener`. The old test used live time tickers and occasionally failed because timing on CI machines is highly variable. This PR refactors `deadlockListener` to allow tests to override the current time and the ticker channel, so the test can run deterministically in a single goroutine with no calls to `time.Sleep`.
(cherry picked from commit 6d92a40)
// No progress was made within the timeout, log error so users
70
101
// know there is likely a problem with the upstream host
71
-
r.log.Errorf("Logstash batch hasn't reported progress in the last %v, the Logstash host may be stalled. This problem can be prevented by configuring Logstash to use PipelineBusV1 or by upgrading Logstash to 8.17+, for details see https://github.com/elastic/logstash/issues/16657", r.timeout)
72
-
return
102
+
dl.log.Errorf("Logstash batch hasn't reported progress in the last %v, the Logstash host may be stalled. This problem can be prevented by configuring Logstash to use PipelineBusV1 or by upgrading Logstash to 8.17+, for details see https://github.com/elastic/logstash/issues/16657", dl.timeout)
103
+
dl.ctxCancel()
73
104
}
74
105
}
75
106
}
76
107
77
-
func (r*deadlockListener) ack(nint) {
78
-
ifr==nil {
108
+
func (dl*deadlockListener) ack(nint) {
109
+
ifdl==nil {
79
110
return
80
111
}
81
112
// Send the new ack to the run loop, unless it has already shut down in
0 commit comments