Hi,
I have a persistent subscription on a $by_category stream, with the ResolvedLinkedTos = true. I’m consuming events and immediately acknowledging the messages
for {
event, err := readConnectionClient.Read()
readConnectionClient.Ack(event.EventID)
…
}
The events are being read, but these events are being sent to the parked messages bucket. How do I ack ResolvedLinkedTos events using the go client?
Thanks