Fabric: set default throughput for new container to 5k (#2190)

This commit is contained in:
Laurent Nguyen
2025-07-15 20:22:06 +02:00
committed by GitHub
parent 6ec909a97b
commit eb3f6bc93f
3 changed files with 9 additions and 7 deletions

View File

@@ -1,6 +1,7 @@
export const autoPilotThroughput1K = 1000;
export const autoPilotIncrementStep = 1000;
export const autoPilotThroughput4K = 4000;
export const autoPilotThroughput5K = 5000;
export const autoPilotThroughput10K = 10000;
export function isValidAutoPilotThroughput(maxThroughput: number): boolean {