Skip to content

Commit 64ca21d

Browse files
committed
v3.7.0
1 parent 1c08710 commit 64ca21d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/MDriveSync.Client.App.WinForm/MainForm.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/MDriveSync.Core/Services/AliyunJob.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -570,9 +570,9 @@ private void ChangeState(JobState newState)
570570
ProcessCount = 0;
571571
ProcessCurrent = 0;
572572

573-
// 通知前端 - 状态变更或最多每 200ms 通知一次
573+
// 通知前端 - 状态变更或最多每 500ms 通知一次
574574
var now = DateTime.Now;
575-
if (newState != _lastNotifyState || (now - _lastNotifyTime).TotalMilliseconds > 200)
575+
if (newState != _lastNotifyState || (now - _lastNotifyTime).TotalMilliseconds > 500)
576576
{
577577
_log.LogInformation("作业状态改变,通知前端,状态:{@0}", newState);
578578

0 commit comments

Comments
 (0)