Disable EventHandler (live updates) because of memory leak
pull/464/head
Luke Imhoff 6 years ago committed by GitHub
commit 8eccd7adde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      apps/explorer_web/lib/explorer_web/application.ex

@ -5,7 +5,7 @@ defmodule ExplorerWeb.Application do
use Application
alias ExplorerWeb.{Endpoint, EventHandler}
alias ExplorerWeb.Endpoint
def start(_type, _args) do
import Supervisor.Spec
@ -13,8 +13,7 @@ defmodule ExplorerWeb.Application do
# Define workers and child supervisors to be supervised
children = [
# Start the endpoint when the application starts
supervisor(Endpoint, []),
{EventHandler, name: EventHandler}
supervisor(Endpoint, [])
# Start your own worker by calling: PoaexpWeb.Worker.start_link(arg1, arg2, arg3)
# worker(PoaexpWeb.Worker, [arg1, arg2, arg3]),
]

Loading…
Cancel
Save