chore: 暂时禁用多个定时任务执行逻辑

在相关 Job 的 DoWorkAsync 方法中提前 return,防止自动执行挖矿、行情生成、新闻生成及资产更新等后台任务运行。
This commit is contained in:
ccnetcore
2026-01-03 00:03:23 +08:00
parent 38dbd0aca7
commit 61d5d40dbb
6 changed files with 6 additions and 1 deletions

View File

@@ -32,6 +32,7 @@ public class AutoPassInGoodsJob: HangfireBackgroundWorkerBase
}
public override async Task DoWorkAsync(CancellationToken cancellationToken = new CancellationToken())
{
return;
await _marketManager.AutoPassInGoodsAsync();
}
}