Closed cuddlecake closed 5 years ago
Currently, the module variable @config is set and evaluated once at compile time.
@config
This breaks releases via distillery, since configuration provided during runtime is not evaluated.
distillery
With this merge, the configuration is fetched during start_link, i.e. at runtime.
start_link
Currently, the module variable
@config
is set and evaluated once at compile time.This breaks releases via
distillery
, since configuration provided during runtime is not evaluated.With this merge, the configuration is fetched during
start_link
, i.e. at runtime.