Skip to content

Commit

Permalink
fix: correct issue with decoing
Browse files Browse the repository at this point in the history
  • Loading branch information
1995parham committed Oct 6, 2024
1 parent a4312c3 commit 4c3014e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/client/jetstream.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ func (client *Client) jetstreamSubscribe(h <-chan *Message, streamName string) {
zap.Error(err),
)

return
continue
}

latency := time.Since(payload.PublishTime).Seconds()
Expand Down Expand Up @@ -251,7 +251,7 @@ func (client *Client) coreSubscribe(subject string) {
zap.Error(err),
)

return
continue
}

latency := time.Since(payload.PublishTime).Seconds()
Expand Down

0 comments on commit 4c3014e

Please sign in to comment.