Skip to content

Commit

Permalink
reverse logic on linux_report_network_limits (solana-labs#34159)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffwashington authored Nov 18, 2023
1 parent c585e54 commit 7dd8d4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/system_monitor_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ impl SystemMonitorService {
fn linux_report_network_limits(
current_limits: &[(&'static str, &'static InterestingLimit, i64)],
) -> bool {
!current_limits
current_limits
.iter()
.map(|(key, interesting_limit, current_value)| {
datapoint_warn!("os-config", (key, *current_value, i64));
Expand Down

0 comments on commit 7dd8d4b

Please sign in to comment.