We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm doing a bit of preliminary testing with https://github.com/elixir-lang/elixir/releases/tag/v1.14.0-rc.1, and noticed the following warning, so I'm opening an issue to report it :
==> crontab Compiling 7 files (.ex) warning: Application.get_env/3 is discouraged in the module body, use Application.compile_env/3 instead lib/crontab/scheduler.ex:21: Crontab.Scheduler Generated crontab app
Apparently not fixed on master:
master
https://github.com/jshmrtn/crontab/blob/c7641a424abc1191c3bf91ace369350097eb4890/lib/crontab/scheduler.ex#L21
The text was updated successfully, but these errors were encountered:
Fixed by 81bd15a
Sorry, something went wrong.
Looks like the warning is still being triggered:
Compiling 7 files (.ex) warning: Application.get_env/3 is discouraged in the module body, use Application.compile_env/3 instead │ 21 │ @max_runs Application.get_env(:crontab, :max_runs, 10_000) │ ~ │ └─ lib/crontab/scheduler.ex:21:27: Crontab.Scheduler (module)
Same here! Maybe we can reopen a new issue @sergchernata?
It seems this has been resolved in #116, but there has not been a new release?
maennchen
No branches or pull requests
I'm doing a bit of preliminary testing with https://github.com/elixir-lang/elixir/releases/tag/v1.14.0-rc.1, and noticed the following warning, so I'm opening an issue to report it :
Apparently not fixed on
master
:https://github.com/jshmrtn/crontab/blob/c7641a424abc1191c3bf91ace369350097eb4890/lib/crontab/scheduler.ex#L21
The text was updated successfully, but these errors were encountered: