Skip to content

Commit

Permalink
Rename and fix patch
Browse files Browse the repository at this point in the history
  • Loading branch information
jmmorato committed Jun 27, 2024
1 parent 9df4dff commit 47350a0
Showing 1 changed file with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,31 +1,32 @@
From 476821173b736c5d3c99f87f92e78979389229e8 Mon Sep 17 00:00:00 2001
From a9f90c6bb57372210b7ccc1d7672ffe85b729f7a Mon Sep 17 00:00:00 2001
From: jose_morato <[email protected]>
Date: Thu, 27 Jun 2024 15:51:29 +0200
Subject: [PATCH] [fix] RtpsDiscoveryConfig RESEND_PERIOD
Date: Thu, 27 Jun 2024 17:42:33 +0200
Subject: [PATCH] Use Format_FractionalSeconds instead of
Format_IntegerMilliseconds

---
dds/DCPS/RTPS/RtpsDiscoveryConfig.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dds/DCPS/RTPS/RtpsDiscoveryConfig.cpp b/dds/DCPS/RTPS/RtpsDiscoveryConfig.cpp
index cb31a6e9b4..2d9f9e25dc 100644
index 2d9f9e25dc..b3b142ff23 100644
--- a/dds/DCPS/RTPS/RtpsDiscoveryConfig.cpp
+++ b/dds/DCPS/RTPS/RtpsDiscoveryConfig.cpp
@@ -32,7 +32,7 @@ RtpsDiscoveryConfig::resend_period() const
// see RTPS v2.1 9.6.1.4.2
return TheServiceParticipant->config_store()->get(config_key("RESEND_PERIOD").c_str(),
TimeDuration(30 /*seconds*/),
- DCPS::ConfigStoreImpl::Format_IntegerSeconds);
- DCPS::ConfigStoreImpl::Format_IntegerMilliseconds);
+ DCPS::ConfigStoreImpl::Format_FractionalSeconds);
}

void
@@ -40,7 +40,7 @@ RtpsDiscoveryConfig::resend_period(const DCPS::TimeDuration& period)
{
TheServiceParticipant->config_store()->set(config_key("RESEND_PERIOD").c_str(),
period,
- DCPS::ConfigStoreImpl::Format_IntegerSeconds);
- DCPS::ConfigStoreImpl::Format_IntegerMilliseconds);
+ DCPS::ConfigStoreImpl::Format_FractionalSeconds);
}

double

0 comments on commit 47350a0

Please sign in to comment.