Skip to content

Commit

Permalink
feat(cargo-shuttle): nits
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaro00 committed Apr 23, 2024
1 parent ceed492 commit f1f4b4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cargo-shuttle/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub struct ShuttleArgs {
#[arg(long, env = "SHUTTLE_DEBUG")]
pub debug: bool,
/// Target Shuttle's development environment
#[arg(long, env = "SHUTTLE_BETA")]
#[arg(long, env = "SHUTTLE_BETA", hide = true)]
pub beta: bool,

#[command(subcommand)]
Expand Down
2 changes: 1 addition & 1 deletion cargo-shuttle/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ impl ShuttleApiClient {
)]))
.unwrap(),
)
.timeout(Duration::from_secs(60))
.timeout(Duration::from_secs(300)) // TODO: adjust
.build()
.unwrap(),
api_url,
Expand Down

0 comments on commit f1f4b4e

Please sign in to comment.