aboutsummaryrefslogtreecommitdiff
path: root/lib/octochat/supervisor.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/octochat/supervisor.ex')
-rw-r--r--lib/octochat/supervisor.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/octochat/supervisor.ex b/lib/octochat/supervisor.ex
index d551628..9882942 100644
--- a/lib/octochat/supervisor.ex
+++ b/lib/octochat/supervisor.ex
@@ -11,7 +11,7 @@ defmodule Octochat.Supervisor do
def init(_) do
children = [
- supervisor(Task.Supervisor, [[name: Octochat.TaskSupervisor]]),
+ supervisor(Octochat.ServerSupervisor, []),
worker(Task, [Octochat.Acceptor, :accept, []])
]