Fixed order of start_link parameters
This commit is contained in:
parent
303aad97e9
commit
1ecbb5cffe
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ child_spec(FluName) ->
|
|||
start_link(FluName) ->
|
||||
supervisor:start_link({local, make_proxy_name(FluName)}, ?MODULE, []).
|
||||
|
||||
start_proxy(FluName, Filename, DataDir) ->
|
||||
start_proxy(FluName, DataDir, Filename) ->
|
||||
supervisor:start_child(make_proxy_name(FluName), [Filename, DataDir]).
|
||||
|
||||
init([]) ->
|
||||
|
|
Loading…
Reference in a new issue