chore: 移除 performHealthChecks 中未使用的 isInit 参数
This commit is contained in:
parent
9f45e77448
commit
bacf2baf40
1 changed files with 3 additions and 3 deletions
|
|
@ -1670,10 +1670,10 @@ export class ProviderPoolManager {
|
|||
}
|
||||
|
||||
/**
|
||||
* Performs health checks on all providers in the pool.
|
||||
* This method would typically be called periodically (e.g., via cron job).
|
||||
* Performs health checks on selected providers.
|
||||
* Respects SCHEDULED_HEALTH_CHECK.providerTypes configuration.
|
||||
*/
|
||||
async performHealthChecks(isInit = false) {
|
||||
async performHealthChecks() {
|
||||
const scheduledConfig = this.globalConfig?.SCHEDULED_HEALTH_CHECK;
|
||||
const selectedProviderTypes = scheduledConfig?.providerTypes;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue