Skip to content

Commit

Permalink
Attempt to minimize deadlocks on moving delayed messages (#1028)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBoike authored Jul 18, 2022
1 parent 2a35f95 commit 35f177c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ DELETE FROM message
INTO {1};
SELECT TOP 1 GETUTCDATE() as UtcNow, Due as NextDue
FROM {0}
FROM {0} WITH (READPAST)
ORDER BY Due";

public static readonly string PeekText = @"
Expand Down

0 comments on commit 35f177c

Please sign in to comment.