Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Update shard limit for Arm devices to 200 #2447

Merged
merged 1 commit into from
Oct 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test_runner/src/main/kotlin/ftl/args/IArgs.kt
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ interface IArgs {
// num_shards must be >= 1, and <= 500 for non-Arm virtual devices
val AVAILABLE_VIRTUAL_SHARD_COUNT_RANGE = 1..500

// num_shards must be >= 1, and <= 100 for Arm virtual devices
val AVAILABLE_VIRTUAL_ARM_SHARD_COUNT_RANGE = 1..100
// num_shards must be >= 1, and <= 200 for Arm virtual devices
val AVAILABLE_VIRTUAL_ARM_SHARD_COUNT_RANGE = 1..200
}

interface ICompanion {
Expand Down