From 9df4dff389a57ef89d110b0525c5460e66079689 Mon Sep 17 00:00:00 2001 From: jose_morato Date: Thu, 27 Jun 2024 17:43:24 +0200 Subject: [PATCH] Use Format_FractionalSeconds as proposed in the OpenDDS PR --- Patches/RtpsDiscoveryConfig.patch | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Patches/RtpsDiscoveryConfig.patch b/Patches/RtpsDiscoveryConfig.patch index ad156694..09c0810a 100644 --- a/Patches/RtpsDiscoveryConfig.patch +++ b/Patches/RtpsDiscoveryConfig.patch @@ -16,16 +16,16 @@ index cb31a6e9b4..2d9f9e25dc 100644 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