Skip to content

Commit

Permalink
Change default seconds_idle to 300
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau committed Nov 14, 2024
1 parent 0aa3e30 commit d9aa2d6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* Sanitize job names.
* Use `crashes_error` from `crew`.
* Make `cpus`, `gpus`, and `memory` retryable options.
* Change default `seconds_idle` to 300.

# crew.aws.batch 0.0.6

Expand Down
2 changes: 1 addition & 1 deletion R/crew_controller_aws_batch.R
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ crew_controller_aws_batch <- function(
seconds_interval = 0.5,
seconds_timeout = 60,
seconds_launch = 1800,
seconds_idle = Inf,
seconds_idle = 300,
seconds_wall = Inf,
retry_tasks = TRUE,
tasks_max = Inf,
Expand Down
2 changes: 1 addition & 1 deletion R/crew_launcher_aws_batch.R
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ crew_launcher_aws_batch <- function(
seconds_interval = 0.5,
seconds_timeout = 60,
seconds_launch = 1800,
seconds_idle = Inf,
seconds_idle = 300,
seconds_wall = Inf,
tasks_max = Inf,
tasks_timers = 0L,
Expand Down
2 changes: 1 addition & 1 deletion man/crew_controller_aws_batch.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/crew_launcher_aws_batch.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d9aa2d6

Please sign in to comment.