diff options
author | Brian Cully <bjc@kublai.com> | 2008-03-02 14:42:30 -0500 |
---|---|---|
committer | Brian Cully <github.20.shmit@spamgourmet.com> | 2008-03-02 14:42:30 -0500 |
commit | 9778362e464451f1be6943d2d37a47b4afbcb091 (patch) | |
tree | 1925eedb39afd71648981c67407ddecd43e717d7 /src | |
parent | 44e3142e90d13e20797786ee54a1d851628321f8 (diff) | |
download | mysqlerl-9778362e464451f1be6943d2d37a47b4afbcb091.tar.gz mysqlerl-9778362e464451f1be6943d2d37a47b4afbcb091.zip |
Move random_child to its own export, since its tmp.
Diffstat (limited to 'src')
-rw-r--r-- | src/mysqlerl_connection_sup.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mysqlerl_connection_sup.erl b/src/mysqlerl_connection_sup.erl index 30b9537..6e1632a 100644 --- a/src/mysqlerl_connection_sup.erl +++ b/src/mysqlerl_connection_sup.erl @@ -3,7 +3,8 @@ -behavior(supervisor). --export([start_link/0, connect/6, random_child/0]). +-export([random_child/0]). +-export([start_link/0, connect/6]). -export([init/1]). |