Skip to content

Commit

Permalink
No followers warn only when > 1
Browse files Browse the repository at this point in the history
  • Loading branch information
dcadenas committed Nov 26, 2024
1 parent 8ca9998 commit 2cf44eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/domain/follows_differ.rs
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ fn log_line(
}

// Investigate states in which there are no followees but there are unfollowed followees
if followed_counter == 0 && unfollowed_counter > 0 && unchanged == 0 {
if followed_counter == 0 && unfollowed_counter > 1 && unchanged == 0 {
metrics::sudden_follow_drops().increment(1);

if has_nos_agent(event) {
Expand Down

0 comments on commit 2cf44eb

Please sign in to comment.