diff options
author | Brian Cully <bjc@kublai.com> | 2012-02-09 13:56:21 -0500 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2012-02-09 13:56:21 -0500 |
commit | a5424fc5ebde59b8335e99a062e208a80235977f (patch) | |
tree | 622067f1efaf74b9b71f66b6df9715eb1473d88c /src | |
parent | d2eccc3ac3b1ff79bc10abbb4b839f226d88eddc (diff) | |
download | mysqlerl-a5424fc5ebde59b8335e99a062e208a80235977f.tar.gz mysqlerl-a5424fc5ebde59b8335e99a062e208a80235977f.zip |
Don't register mysqlerl_app
Diffstat (limited to 'src')
-rw-r--r-- | src/mysqlerl.app | 2 | ||||
-rw-r--r-- | src/mysqlerl_app.erl | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/mysqlerl.app b/src/mysqlerl.app index eb2bdf4..1fa56b4 100644 --- a/src/mysqlerl.app +++ b/src/mysqlerl.app @@ -6,7 +6,7 @@ {vsn, "0"}, {modules, [mysqlerl, mysqlerl_app, mysqlerl_sup, mysqlerl_connection, mysql_port_sup, mysql_port]}, - {registered, [mysqlerl_app, mysqlerl_sup]}, + {registered, [mysqlerl_sup]}, {applications, [kernel, stdlib]}, {env, []}, {mod, {mysqlerl_app, []}}]}. diff --git a/src/mysqlerl_app.erl b/src/mysqlerl_app.erl index cdb8ade..a37e020 100644 --- a/src/mysqlerl_app.erl +++ b/src/mysqlerl_app.erl @@ -7,7 +7,6 @@ -export([start/2, stop/1]). start(normal, []) -> - register(?MODULE, self()), mysqlerl_sup:start_link(). stop([]) -> |