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