Skip to content

Commit ae179d4

Browse files
committed
Increase iterations to u16(65535) since u8(255) is too small
1 parent 316f055 commit ae179d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cold-stat"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = ["TATSUNO Yasuhiro <[email protected]>"]
66
license = "MIT"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ struct Args {
3939
default_value_t = 100,
4040
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."
4141
)]
42-
iterations: u8,
42+
iterations: u16,
4343

4444
#[arg(
4545
short,

0 commit comments

Comments
 (0)