Browse Source

fix end step delay bug.

sangwq 1 year ago
parent
commit
b79251cf32
1 changed files with 1 additions and 1 deletions
  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();