Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. ** (Mix) Could not start application reph: Reph.start(:normal, []) returned an error: shutdown: failed to start child: Reph.ReactIO
  2. ** (EXIT) an exception was raised:
  3. ** (ArgumentError) expected :name option to be one of:
  4.  
  5. * nil
  6. * atom
  7. * {:global, term}
  8. * {:via, module, term}
  9.  
  10. Got: {:local, Reph.ReactIO}
  11.  
  12. (elixir) lib/supervisor.ex:332: Supervisor.start_link/3
  13. (stdlib) supervisor.erl:365: :supervisor.do_start_child/2
  14. (stdlib) supervisor.erl:348: :supervisor.start_children/3
  15. (stdlib) supervisor.erl:314: :supervisor.init_children/2
  16. (stdlib) gen_server.erl:328: :gen_server.init_it/6
  17. (stdlib) proc_lib.erl:247: :proc_lib.init_p_do_apply/3
  18.  
  19. {atom, opts} when is_atom(atom) ->
  20. :gen.start(:gen_server, link, {:local, atom}, module, args, opts)
  21.  
  22. def start_link(opts \ []) do
  23. Supervisor.start_link(__MODULE__, :ok, name: {:local, __MODULE__})
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement