Skip to content

Commit

Permalink
feat(inclusion_monitor): indicate when no late calls found
Browse files Browse the repository at this point in the history
  • Loading branch information
alextes committed Feb 13, 2024
1 parent adcb880 commit c41a0a7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/phoenix/inclusion_monitor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,9 @@ async fn report_missing_payload(
);
message.push_str("\n\n");
message.push_str(&late_call_message);
} else {
message.push_str("\n\n");
message.push_str("no late call warnings found");
}

if published_stats.is_none() && publish_errors.is_empty() && late_call_stats.is_some() {
Expand Down

0 comments on commit c41a0a7

Please sign in to comment.