Web.Federator: Fix unused variable

This commit is contained in:
Haelwenn (lanodan) Monnier 2019-02-06 21:04:11 +01:00
parent 60ea29dfe6
commit 473095faf2
No known key found for this signature in database
GPG Key ID: D5B7A8E43C997DEE
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ def handle_cast({:enqueue, type, payload, _priority}, state) do
{:noreply, %{in: {i_running_jobs, i_queue}, out: {o_running_jobs, o_queue}}}
end
def handle_cast(m, state) do
def handle_cast(_, state) do
{:noreply, state}
end