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 0e66c30 commit b1c3750
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 @@ -4,6 +4,7 @@
* Deprecate `launch_max` in favor of `crashes_error` (#189).
* Look for crashes of all workers in `rotate()` instead of looking for crashes of a specific worker in `launch()` (#189).
* Add a `crashes()` launcher method to allow plugins to detect and respond to crashes more easily.
* Change default `seconds_idle` to 300.

# crew 0.10.1

Expand Down
2 changes: 1 addition & 1 deletion R/crew_controller_local.R
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ crew_controller_local <- function(
seconds_interval = 0.5,
seconds_timeout = 60,
seconds_launch = 30,
seconds_idle = Inf,
seconds_idle = 300,
seconds_wall = Inf,
seconds_exit = NULL,
retry_tasks = TRUE,
Expand Down
2 changes: 1 addition & 1 deletion R/crew_launcher.R
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ crew_launcher <- function(
seconds_interval = 0.5,
seconds_timeout = 60,
seconds_launch = 30,
seconds_idle = Inf,
seconds_idle = 300,
seconds_wall = Inf,
seconds_exit = NULL,
tasks_max = Inf,
Expand Down
2 changes: 1 addition & 1 deletion man/crew_controller_local.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.Rd

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

0 comments on commit b1c3750

Please sign in to comment.