You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When starting downloader without RetryConfig argument, retry config is
built by merging `:retry_config` application env with defaults.
For instance, default `max_disconnects` could be overriden with:
```
config :nerves_hub_link_common, :retry_config, max_disconnects: 20
```
Closesnerves-hub#32
When starting downloader without RetryConfig argument, retry config is
built by merging `:retry_config` application env with defaults.
For instance, default `max_disconnects` could be overriden with:
```
config :nerves_hub_link_common, :retry_config, max_disconnects: 20
```
Closes#32
Downloader's retry config should be customizable.
I suggest we use the following application env:
config :nerves_hub_link_common, :retry_config, [...]
This env could be merged with default settings for creating initial
%RetryConfig{}
structureThe text was updated successfully, but these errors were encountered: