We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cade7c commit fc1a09dCopy full SHA for fc1a09d
lib/exq/stats/server.ex
@@ -10,7 +10,6 @@ defmodule Exq.Stats.Server do
10
"""
11
use GenServer
12
use Timex
13
- alias Exq.Redis.JobQueue
14
alias Exq.Redis.JobStat
15
alias Exq.Support.Process
16
require Logger
lib/exq/worker/supervisor.ex
@@ -5,7 +5,7 @@ defmodule Exq.Worker.Supervisor do
5
Supervisor.start_link(__MODULE__, opts, [name: supervisor_name(opts[:name])])
6
end
7
8
- def init(arg) do
+ def init(_arg) do
9
children = [
worker(Exq.Worker.Server, [], restart: :temporary)
]
0 commit comments