Skip to content

Commit 4b9593c

Browse files
authored
Merge pull request connamara#967 from gbirchmeier/session-test-refactor
some Session-related refactoring
2 parents 8c8a047 + 22ecb3b commit 4b9593c

File tree

7 files changed

+812
-807
lines changed

7 files changed

+812
-807
lines changed

QuickFIXn/Session.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,8 @@ public void Logon()
379379
/// <summary>
380380
/// Sets some internal state variables to disable the session.
381381
/// Users will be disconnected on next cycle.
382+
/// (This function is for actively initiating a logout,
383+
/// it is NOT for processing a logout request from the counterparty.)
382384
/// </summary>
383385
public void Logout(string reason = "")
384386
{
@@ -1198,7 +1200,7 @@ internal void GenerateResendRequest(string beginString, SeqNumType msgSeqNum)
11981200
return;
11991201
}
12001202

1201-
Log.OnEvent("Error sending ResendRequest (" + beginSeqNum + " ," + endChunkSeqNum + ")");
1203+
Log.OnEvent($"Error sending ResendRequest ({beginSeqNum}, {endChunkSeqNum})");
12021204
}
12031205

12041206
/// <summary>

0 commit comments

Comments
 (0)