Skip to content

Commit

Permalink
Fix EDP default timings (#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
MiguelCompany authored May 15, 2019
2 parents 89c7c7e + 7ea0ee2 commit af648ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cpp/rtps/builtin/discovery/endpoint/EDPSimple.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ namespace rtps {

// Default configuration values for EDP entities.
const Duration_t edp_heartbeat_period{1, 0}; // 1 second
const Duration_t edp_nack_response_delay{0, 400*1000*1000}; // ~93 milliseconds
const Duration_t edp_nack_supression_duration{0, 50*1000*1000}; // ~11 milliseconds
const Duration_t edp_heartbeat_response_delay{0, 50*1000*1000}; // ~11 milliseconds
const Duration_t edp_nack_response_delay{0, 93*1000*1000}; // 93 milliseconds
const Duration_t edp_nack_supression_duration{0, 11*1000*1000}; // 11 milliseconds
const Duration_t edp_heartbeat_response_delay{0, 11*1000*1000}; // 11 milliseconds

const int32_t edp_initial_reserved_caches = 20;

Expand Down

0 comments on commit af648ac

Please sign in to comment.