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
{{ message }}
This repository has been archived by the owner on Sep 16, 2020. It is now read-only.
When I am using toniq 1.2.0 with elixir 1.3.4, the following warning appears during compilation:
remote: warning: the variable "v1" is unsafe as it has been set inside a case/cond/receive/if/&&/||. Please explicitly return the variable value instead. For example:
remote:
remote: case int do
remote: 1 -> atom = :one
remote: 2 -> atom = :two
remote: end
remote:
remote: should be written as
remote:
remote: atom =
remote: case int do
remote: 1 -> :one
remote: 2 -> :two
remote: end
remote:
remote: Unsafe variable found at:
remote: lib/toniq/job.ex:28
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I am using toniq 1.2.0 with elixir 1.3.4, the following warning appears during compilation:
The text was updated successfully, but these errors were encountered: