Commit 8755c93c authored by Nick Craver's avatar Nick Craver

Appveyor is slow...

parent cb2f1559
...@@ -411,7 +411,7 @@ public void MassiveBulkOpsAsyncOldStyle(bool withContinuation, bool suspendFlush ...@@ -411,7 +411,7 @@ public void MassiveBulkOpsAsyncOldStyle(bool withContinuation, bool suspendFlush
public void MassiveBulkOpsSync(bool preserveOrder, int threads) public void MassiveBulkOpsSync(bool preserveOrder, int threads)
{ {
int workPerThread = SyncOpsQty / threads; int workPerThread = SyncOpsQty / threads;
using (var muxer = Create(syncTimeout: 20000)) using (var muxer = Create(syncTimeout: 30000))
{ {
muxer.PreserveAsyncOrder = preserveOrder; muxer.PreserveAsyncOrder = preserveOrder;
RedisKey key = "MBOS"; RedisKey key = "MBOS";
...@@ -492,7 +492,7 @@ public void MassiveBulkOpsSyncOldStyle(ResultCompletionMode completionMode, int ...@@ -492,7 +492,7 @@ public void MassiveBulkOpsSyncOldStyle(ResultCompletionMode completionMode, int
[InlineData(false, 5)] [InlineData(false, 5)]
public void MassiveBulkOpsFireAndForget(bool preserveOrder, int threads) public void MassiveBulkOpsFireAndForget(bool preserveOrder, int threads)
{ {
using (var muxer = Create(syncTimeout: 20000)) using (var muxer = Create(syncTimeout: 30000))
{ {
muxer.PreserveAsyncOrder = preserveOrder; muxer.PreserveAsyncOrder = preserveOrder;
#if DEBUG #if DEBUG
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment