We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6bd88e commit 0f9f721Copy full SHA for 0f9f721
v2/pkg/engine/resolve/event_loop_test.go
@@ -51,6 +51,10 @@ func (f *FakeSubscriptionWriter) Complete() {
51
f.messageCountOnComplete = len(f.writtenMessages)
52
}
53
54
+func (f *FakeSubscriptionWriter) Heartbeat() error {
55
+ return nil
56
+}
57
+
58
func (f *FakeSubscriptionWriter) Close(SubscriptionCloseKind) {
59
f.mu.Lock()
60
defer f.mu.Unlock()
v2/pkg/engine/resolve/resolve_test.go
@@ -4777,6 +4777,10 @@ func (s *SubscriptionRecorder) Complete() {
4777
s.complete.Store(true)
4778
4779
4780
+func (s *SubscriptionRecorder) Heartbeat() error {
4781
4782
4783
4784
func (s *SubscriptionRecorder) Close(_ SubscriptionCloseKind) {
4785
s.closed.Store(true)
4786
0 commit comments