aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/mysqlerl_app.erl6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mysqlerl_app.erl b/src/mysqlerl_app.erl
index 6be4007..0517d3b 100644
--- a/src/mysqlerl_app.erl
+++ b/src/mysqlerl_app.erl
@@ -13,7 +13,9 @@ stop([]) ->
ok.
init([]) ->
- ConnectionSup = {mysqlerl_connection_sup, {mysqlerl_connection_sup, start_link, []},
- permanent, infinity, supervisor, [mysqlerl_connection_sup]},
+ ConnectionSup = {mysqlerl_connection_sup,
+ {mysqlerl_connection_sup, start_link, []},
+ permanent, infinity, supervisor,
+ [mysqlerl_connection_sup]},
{ok, {{one_for_one, 10, 5},
[ConnectionSup]}}.