Skip to content
This repository has been archived by the owner on Sep 21, 2024. It is now read-only.

Commit

Permalink
Putting back testing error checking code which was mistakenly labeled…
Browse files Browse the repository at this point in the history
… as unimportant.
  • Loading branch information
jongoldDB committed Jan 18, 2019
1 parent 35e50c4 commit 9b2db1e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public async Task MAsync(byte[] arg)
var curCallNum = StreamCommunicator.ReadBufferedLong(arg, 0);
if (_numJobs == 1 && _lastCallNum + 1 != curCallNum)
{
Console.WriteLine("*X* Out of order message. Expected {0}, got {1}", _lastCallNum + 1, curCallNum);
Console.WriteLine("Out of order message. Expected {0}, got {1}", _lastCallNum + 1, curCallNum);
}
_lastCallNum = curCallNum;
}
Expand Down

0 comments on commit 9b2db1e

Please sign in to comment.