Skip to content

Commit

Permalink
fix: assign since correctly in changes follower
Browse files Browse the repository at this point in the history
  • Loading branch information
ricellis committed Nov 6, 2024
1 parent 864e4ff commit ce95e03
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ private enum TransientErrorSuppression {
} else {
this.transientSuppression = TransientErrorSuppression.TIMER;
}
if (this.options.since() == null) {
this.since = this.options.since();
if (this.since == null) {
this.since = (this.mode == Mode.LISTEN) ? "now" : "0";
}
this.successTimestamp = Instant.now();
Expand Down

0 comments on commit ce95e03

Please sign in to comment.