Skip to content

Commit

Permalink
default to printing error messages
Browse files Browse the repository at this point in the history
because we use it mainly in CI and need to know what's going on
  • Loading branch information
mrcaseb committed Oct 8, 2024
1 parent d6453cf commit 92ec848
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/zzz.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pause_base <- Sys.getenv("NFLVERSE.UPLOAD.PAUSE_BASE", 0.05) |> as.numeric()
pause_min <- Sys.getenv("NFLVERSE.UPLOAD.PAUSE_MIN", 1) |> as.numeric()
max_times <- Sys.getenv("NFLVERSE.UPLOAD.MAX_TIMES", 10) |> as.numeric()
quiet <- Sys.getenv("NFLVERSE.UPLOAD.QUIET", TRUE) |> as.logical()
quiet <- Sys.getenv("NFLVERSE.UPLOAD.QUIET", "false") |> as.logical()

retry_rate <- purrr::rate_backoff(
pause_base = pause_base,
Expand Down

0 comments on commit 92ec848

Please sign in to comment.