Skip to content

Commit

Permalink
Explicitly set retry counts to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
spaghettidba committed Oct 27, 2021
1 parent f6c8293 commit 5bbd2b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WorkloadTools/Consumer/Replay/ReplayConsumer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ public class ReplayConsumer : BufferedWorkloadConsumer
public int QueryTimeoutSeconds { get; set; } = 30;
public int WorkerStatsCommandCount { get; set; } = 1000;
public bool MimicApplicationName { get; set; } = false;
public int FailRetryCount { get; set; }
public int TimeoutRetryCount { get; set; }
public int FailRetryCount { get; set; } = 0;
public int TimeoutRetryCount { get; set; } = 0;

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

Expand Down

0 comments on commit 5bbd2b0

Please sign in to comment.