Skip to content

Commit

Permalink
Update shard limit for Arm devices to 200 (#2447)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybaroneee committed Oct 26, 2023
1 parent ae6e81a commit 562a74d
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 562a74d

Please sign in to comment.