diff options
author | Anthony Ramine <[email protected]> | 2011-05-03 15:34:52 +0200 |
---|---|---|
committer | Anthony Ramine <[email protected]> | 2011-05-03 16:00:55 +0200 |
commit | 9c155bfea766e2f991aafb0ef38fe269d86af6b7 (patch) | |
tree | 263dedfbefbde4d17bfc960c3106ec808eae1324 /src/cowboy.app.src | |
parent | 0fa5f71232eaecdb19709048b8029b69058e2879 (diff) | |
download | cowboy-9c155bfea766e2f991aafb0ef38fe269d86af6b7.tar.gz cowboy-9c155bfea766e2f991aafb0ef38fe269d86af6b7.tar.bz2 cowboy-9c155bfea766e2f991aafb0ef38fe269d86af6b7.zip |
Add cowboy_sup to the list of registered processes
Cowboy top supervisor has a name and it should be clearly stated in its
.app.src file.
Diffstat (limited to 'src/cowboy.app.src')
-rw-r--r-- | src/cowboy.app.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cowboy.app.src b/src/cowboy.app.src index d3dd958..1cfc361 100644 --- a/src/cowboy.app.src +++ b/src/cowboy.app.src @@ -16,7 +16,7 @@ {description, "Small, fast, modular HTTP server."}, {vsn, "0.1.0"}, {modules, []}, - {registered, []}, + {registered, [cowboy_sup]}, {applications, [ kernel, stdlib |