Skip to content

Commit 5bbd2b0

Browse files
committed
Explicitly set retry counts to 0
1 parent f6c8293 commit 5bbd2b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

WorkloadTools/Consumer/Replay/ReplayConsumer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ public class ReplayConsumer : BufferedWorkloadConsumer
2424
public int QueryTimeoutSeconds { get; set; } = 30;
2525
public int WorkerStatsCommandCount { get; set; } = 1000;
2626
public bool MimicApplicationName { get; set; } = false;
27-
public int FailRetryCount { get; set; }
28-
public int TimeoutRetryCount { get; set; }
27+
public int FailRetryCount { get; set; } = 0;
28+
public int TimeoutRetryCount { get; set; } = 0;
2929

3030
public Dictionary<string, string> DatabaseMap { get; set; } = new Dictionary<string, string>();
3131

0 commit comments

Comments
 (0)