diff --git a/ProductionSystem/Forms/HomeFormInfo.cs b/ProductionSystem/Forms/HomeFormInfo.cs index ac2d49c..cc3f2a4 100644 --- a/ProductionSystem/Forms/HomeFormInfo.cs +++ b/ProductionSystem/Forms/HomeFormInfo.cs @@ -768,7 +768,7 @@ namespace ProductionSystem.Forms string name = GetCode() + ":Step2"; if (!_cache.ContainsKey(name)) { - _cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(1)); + _cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(5)); Step2(); } @@ -790,7 +790,7 @@ namespace ProductionSystem.Forms string name =GetCode() + ":Step3"; if (!_cache.ContainsKey(name)) { - _cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(1)); + _cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(5)); Step3(); } @@ -808,7 +808,7 @@ namespace ProductionSystem.Forms string name = GetCode() + ":Step4"; if (!_cache.ContainsKey(name)) { - _cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(1)); + _cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(5)); Step4(); } @@ -823,7 +823,7 @@ namespace ProductionSystem.Forms string name = GetCode() + ":Step5"; if (!_cache.ContainsKey(name)) { - _cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(1)); + _cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(5)); Step5(); } @@ -839,7 +839,7 @@ namespace ProductionSystem.Forms string name = GetCode() + ":Step6"; if (!_cache.ContainsKey(name)) { - _cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(1)); + _cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(5)); Step6(); } @@ -854,7 +854,7 @@ namespace ProductionSystem.Forms string name = GetCode() + ":Step7"; if (!_cache.ContainsKey(name)) { - _cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(1)); + _cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(5)); Step7(); } @@ -871,7 +871,7 @@ namespace ProductionSystem.Forms string name = GetCode() + ":Step8"; if (!_cache.ContainsKey(name)) { - _cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(1)); + _cache.Set(name, DateTime.Now, TimeSpan.FromMinutes(5)); Step8(); }