Returns the rush config that was set by rush_plan()
.
Value
list()
with the stored configuration.
Examples
# This example is not executed since Redis must be installed
# \donttest{
config_local = redux::redis_config()
rush_plan(config = config_local, n_workers = 2)
#> Error in rush_plan(config = config_local, n_workers = 2): Can't connect to Redis. Check the configuration.
rush_config()
#> $config
#> NULL
#>
#> $n_workers
#> NULL
#>
#> $lgr_thresholds
#> NULL
#>
#> $large_objects_path
#> NULL
#>
#> $start_worker_timeout
#> NULL
#>
# }