Explorar el Código

fix end step delay bug.

sangwq hace 1 año
padre
commit
b79251cf32
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Venus/Framework/Common/Routine/RoutineRunner.cs

+ 1 - 1
Venus/Framework/Common/Routine/RoutineRunner.cs

@@ -29,7 +29,7 @@ namespace MECF.Framework.Common.Routine
 
         // 缺省最大超时 10 分钟, delay 5 秒
         private const int   _defaultTimeout = 600000;
-        private const int   _defaultDelay   = 5000;
+        private const int   _defaultDelay   = 100;
 
         Stopwatch           _subStepTimer   = new Stopwatch();