diff --git a/src/Ocelot/Configuration/File/FileQoSOptions.cs b/src/Ocelot/Configuration/File/FileQoSOptions.cs index 85b51fa43..68d74865f 100644 --- a/src/Ocelot/Configuration/File/FileQoSOptions.cs +++ b/src/Ocelot/Configuration/File/FileQoSOptions.cs @@ -1,12 +1,12 @@ -namespace Ocelot.Configuration.File -{ - public class FileQoSOptions +namespace Ocelot.Configuration.File +{ + public class FileQoSOptions { public FileQoSOptions() { DurationOfBreak = 1; ExceptionsAllowedBeforeBreaking = 0; - TimeoutValue = int.MaxValue; + TimeoutValue = 0; } public FileQoSOptions(FileQoSOptions from) @@ -22,9 +22,9 @@ public FileQoSOptions(QoSOptions from) ExceptionsAllowedBeforeBreaking = from.ExceptionsAllowedBeforeBreaking; TimeoutValue = from.TimeoutValue; } - - public int DurationOfBreak { get; set; } - public int ExceptionsAllowedBeforeBreaking { get; set; } - public int TimeoutValue { get; set; } - } + + public int DurationOfBreak { get; set; } + public int ExceptionsAllowedBeforeBreaking { get; set; } + public int TimeoutValue { get; set; } + } }