Skip to content

Commit db05dfe

Browse files
committed
RTPS Writer now sends repair data at 100 Hz by default.
1 parent 4bcaf51 commit db05dfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rtps/writer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ impl Writer {
478478
let delay_to_next_repair = self
479479
.qos_policies
480480
.deadline()
481-
.map_or_else(|| Duration::from_millis(100), |dl| dl.0)
481+
.map_or_else(|| Duration::from_millis(10), |dl| dl.0)
482482
/ 5;
483483
self.timed_event_timer.set_timeout(
484484
std::time::Duration::from(delay_to_next_repair),

0 commit comments

Comments
 (0)