Skip to content

Commit 7cc93ac

Browse files
committed
fix: Extend token expiry duration
1 parent 51ec650 commit 7cc93ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cli.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ pub fn ask<'a, 'b>(subilo_path: &'a str) -> clap::App<'a, 'b> {
6767
clap::Arg::with_name("duration")
6868
.short("d")
6969
.long("duration")
70-
.help("Token duration until expires in minutes")
71-
.default_value("43800")
70+
.help("Token duration until expires in minutes. Defaults to 1 year.")
71+
.default_value("525600") // 60 * 24 * 365
7272
.takes_value(true),
7373
)
7474
)

0 commit comments

Comments
 (0)