-
Notifications
You must be signed in to change notification settings - Fork 622
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
QFJ-375 - configurable timeout multiplier #288
QFJ-375 - configurable timeout multiplier #288
Conversation
@@ -1285,11 +1285,21 @@ <H3>QuickFIX Settings</H3> | |||
<TR ALIGN="left" VALIGN="middle"> | |||
<TD><I>TestRequestDelayMultiplier</I></TD> | |||
<TD>Fraction of the heartbeat interval which defines the additional time to wait | |||
if a TestRequest sent after a missing heartbeat times out. | |||
if a TestRequest sent after a missing heartbeat times out (final coefficient value is equal to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know if I made it worst by clarifying the final coefficient values as for TestRequestDelayMultiplier there is also number of requests variable which might require to look in in the code anyway.
HeartBeatTimeoutMultiplier + 1.0). | ||
</TD> | ||
<TD>any non-negative value</TD> | ||
<TD>1.4</TD> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The default hardcoded values was 2.4, but +1 is always done in the code the same as for TestRequestDelayMultiplier
</TD> | ||
<TD>0..1</TD> | ||
<TD>any non-negative value</TD> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This has only informative value as there were no checks anyway.
Is it worth turning LGTM JavaScript off (if possible)? |
Hi @the-thing , thanks for the PR. |
I see, thanks. Strange that they don't support it. |
quickfixj-core/src/test/java/quickfix/MockSystemTimeSource.java
Outdated
Show resolved
Hide resolved
quickfixj-core/src/test/java/quickfix/MockSystemTimeSource.java
Outdated
Show resolved
Hide resolved
…ault value in unit test
8cf88c2
to
42aea7b
Compare
Fixes QFJ-375
Changes