Skip to content

Commit

Permalink
Merge pull request #852 from gbirchmeier/captimestamp
Browse files Browse the repository at this point in the history
stop capitalizing TimestampPrecision wrong
  • Loading branch information
gbirchmeier authored May 21, 2024
2 parents 86a980f + 28da79c commit 37ba497
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion QuickFIXn/SessionFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public Session Create(SessionID sessionId, QuickFix.SettingsDictionary settings)

if (settings.Has("MillisecondsInTimeStamp")) {
throw new ApplicationException(
"Setting 'MillisecondsInTimeStamp' was removed. Use 'TimeStampPrecision=Milliseconds' instead.");
"Setting 'MillisecondsInTimeStamp' was removed. Use 'TimestampPrecision=Milliseconds' instead.");
}

if (settings.Has(SessionSettings.SEND_REDUNDANT_RESENDREQUESTS))
Expand Down
2 changes: 1 addition & 1 deletion QuickFIXn/SessionSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class SessionSettings
public const string LOGOUT_TIMEOUT = "LogoutTimeout";
public const string SEND_REDUNDANT_RESENDREQUESTS = "SendRedundantResendRequests";
public const string RESEND_SESSION_LEVEL_REJECTS = "ResendSessionLevelRejects";
public const string TIMESTAMP_PRECISION = "TimeStampPrecision";
public const string TIMESTAMP_PRECISION = "TimestampPrecision";
public const string ENABLE_LAST_MSG_SEQ_NUM_PROCESSED = "EnableLastMsgSeqNumProcessed";
public const string MAX_MESSAGES_IN_RESEND_REQUEST = "MaxMessagesInResendRequest";
public const string SEND_LOGOUT_BEFORE_TIMEOUT_DISCONNECT = "SendLogoutBeforeDisconnectFromTimeout";
Expand Down
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ What's New
* #842 - Fix nano-datetime-to-string bug (gbirchmeier)
* Also refactor the heck out of DateTimeConverter & tests: many functions renamed/deprecated
* #847 - remove setting MillisecondsInTimeStamp (gbirchmeier)
* Use TimeStampPrecision instead (same as QF/j)
* Use TimestampPrecision instead (same as QF/j)

**Non-breaking changes**
* #400 - added DDTool, a C#-based codegen, and deleted Ruby-based generator (gbirchmeier)
Expand Down

0 comments on commit 37ba497

Please sign in to comment.