enhance: Fix using wrong pool for warmup (#38941)

Signed-off-by: sunby <sunbingyi1992@gmail.com>
pull/38991/head
Bingyi Sun 2025-01-03 17:50:54 +08:00 committed by GitHub
parent af08b5b311
commit c6a7f48123
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1394,7 +1394,7 @@ func (d *AsyncWarmupDispatcher) Run(ctx context.Context) {
case <-ctx.Done():
return
default:
GetDynamicPool().Submit(task)
GetWarmupPool().Submit(task)
}
}