Skip to content

Commit

Permalink
naming is hard
Browse files Browse the repository at this point in the history
  • Loading branch information
mgravell committed Jun 20, 2024
1 parent 90f3c8a commit 75ae891
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/StackExchange.Redis/PhysicalConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1704,7 +1704,7 @@ private void MatchResult(in RawResult result)
// check whether we're waiting for a high-integrity mode post-response checksum (using cheap null-check first)
if (_awaitingToken is not null && (msg = Interlocked.Exchange(ref _awaitingToken, null)) is not null)
{
_readStatus = ReadStatus.ResponseChecksum;
_readStatus = ReadStatus.ResponseSequenceCheck;
ProcessHighIntegrityResponseToken(msg, in result, BridgeCouldBeNull);
return;
}
Expand Down Expand Up @@ -2109,7 +2109,7 @@ internal enum ReadStatus
PubSubPMessage,
Reconfigure,
InvokePubSub,
ResponseChecksum, // high-integrity mode only
ResponseSequenceCheck, // high-integrity mode only
DequeueResult,
ComputeResult,
CompletePendingMessageSync,
Expand Down

0 comments on commit 75ae891

Please sign in to comment.