diff options
| author | Christophe Romain <christophe.romain@process-one.net> | 2016-08-01 14:09:16 +0200 | 
|---|---|---|
| committer | Christophe Romain <christophe.romain@process-one.net> | 2016-08-01 14:09:16 +0200 | 
| commit | bf45c9eeeebd5dd04397e12dd3051a9a02e792ab (patch) | |
| tree | 1225ac1bc980942bd69373f868eede76969e4b87 | |
| parent | Add missing comas in sql statement (#1219) (diff) | |
Switch mix worker to transient
| -rw-r--r-- | src/mod_mix.erl | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/mod_mix.erl b/src/mod_mix.erl index b373ad13d..a81efd5ce 100644 --- a/src/mod_mix.erl +++ b/src/mod_mix.erl @@ -44,7 +44,7 @@ start_link(Host, Opts) ->  start(Host, Opts) ->      Proc = gen_mod:get_module_proc(Host, ?PROCNAME),      ChildSpec = {Proc, {?MODULE, start_link, [Host, Opts]}, -		 temporary, 5000, worker, [?MODULE]}, +		 transient, 5000, worker, [?MODULE]},      supervisor:start_child(ejabberd_sup, ChildSpec).  stop(Host) -> | 
