Skip to content

Commit

Permalink
Merge pull request #2 from exoego/iterations
Browse files Browse the repository at this point in the history
Increase iterations to u16(65535) since u8(255) is too small
  • Loading branch information
exoego committed Mar 28, 2024
2 parents 8a15fc3 + df60175 commit e2fa24e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cold-stat"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["TATSUNO Yasuhiro <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ struct Args {
default_value_t = 100,
help = "Number of iterations to invoke the function. It is recommended to set 30 at least. Because the number of collected cold starts often is a bit shorter than the specified `ITERATIONS` due to eventual consistency of CloudWatch Logs."
)]
iterations: u8,
iterations: u16,

#[arg(
short,
Expand Down

0 comments on commit e2fa24e

Please sign in to comment.