Skip to content

Commit

Permalink
[fix][broker] Fix the wrong NIC speed rate unit. (#17890)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattisonchao authored Sep 30, 2022
1 parent 15a347c commit fb7307d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public static double getTotalNicLimit(List<String> nics, BitRateUnit bitRateUnit
log.error("[LinuxInfo] Failed to get total nic limit.", e);
return 0d;
}
}).sum(), BitRateUnit.Bit);
}).sum(), BitRateUnit.Megabit);
}

/**
Expand Down

0 comments on commit fb7307d

Please sign in to comment.