Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit f4839c4

Browse files
Aaron BoxerAaron Boxer
authored andcommitted
rolled back making Enqueue a virtual method
1 parent ea06856 commit f4839c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStack.Redis/Support/Queue/Implementation/RedisSequentialWorkQueue.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public RedisSequentialWorkQueue(int maxReadPoolSize, int maxWritePoolSize, strin
4040
/// </summary>
4141
/// <param name="workItem"></param>
4242
/// <param name="workItemId"></param>
43-
public virtual void Enqueue(string workItemId, T workItem)
43+
public void Enqueue(string workItemId, T workItem)
4444
{
4545
using (var disposableClient = clientManager.GetDisposableClient<SerializingRedisClient>())
4646
{

0 commit comments

Comments
 (0)