소스 검색

fix end step delay bug.

sangwq 1 년 전
부모
커밋
b79251cf32
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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();