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 2a5fd89 commit 1f97a54Copy full SHA for 1f97a54
lc-lib/receiver/status.go
@@ -73,7 +73,9 @@ func (p *poolConnectionStatus) Update() error {
73
p.SetEntry("description", api.String(p.desc))
74
p.SetEntry("completedLines", api.Number(p.lines))
75
p.SetEntry("receivedBytes", api.Bytes(p.bytes))
76
- p.SetEntry("pendingPayloads", api.Number(len(p.progress)))
+ if p.supportsAck {
77
+ p.SetEntry("pendingPayloads", api.Number(len(p.progress)))
78
+ }
79
return nil
80
}
81
0 commit comments