Skip to content

Commit

Permalink
Refs #2933. Decreasing default response values
Browse files Browse the repository at this point in the history
  • Loading branch information
richiware committed May 29, 2018
1 parent 095d657 commit 201a393
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/fastrtps/rtps/attributes/ReaderAttributes.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class ReaderTimes
ReaderTimes()
{
initialAcknackDelay.fraction = 200*1000*1000;
heartbeatResponseDelay.fraction = 500*1000*1000;
heartbeatResponseDelay.fraction = 20*1000*1000;
};
virtual ~ReaderTimes(){};
//!Initial AckNack delay. Default value ~45ms.
Expand Down
2 changes: 1 addition & 1 deletion include/fastrtps/rtps/attributes/WriterAttributes.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class WriterTimes
{
initialHeartbeatDelay.fraction = 200*1000*1000;
heartbeatPeriod.seconds = 3;
nackResponseDelay.fraction = 200*1000*1000;
nackResponseDelay.fraction = 20*1000*1000;
};
virtual ~WriterTimes(){};

Expand Down

0 comments on commit 201a393

Please sign in to comment.