Skip to content

Commit

Permalink
Add enable-timestamps to default babel config
Browse files Browse the repository at this point in the history
When the babel config code was recently updated enable-timestamps was
removed from the default argument set for new interfaces by accident
resulting in latency reporting being broken in networks running newer
versions of Rita. This patch resolves that issue
  • Loading branch information
jkilpatr committed Apr 1, 2024
1 parent 51836d3 commit e276d84
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions babel_monitor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ fn build_interface_config_string(config: BabeldInterfaceConfig) -> String {
command.push_str(&format!("rtt-max {} ", config.rtt_max));
command.push_str(&format!("hello-interval {} ", config.hello_interval));
command.push_str(&format!("update-interval {} ", config.update_interval));
command.push_str("enable-timestamps true");
command
}

Expand Down

0 comments on commit e276d84

Please sign in to comment.