diff options
author | Loïc Hoguin <[email protected]> | 2011-04-02 20:27:16 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2011-04-02 20:27:16 +0200 |
commit | e4da6956fceea1af8e2cdf9fece0e014576ab43c (patch) | |
tree | c182e61fd7f7500a40bd5346b582e50afc910431 /src/cowboy.app.src | |
parent | e6e5b1767fe379c3fb9a9c46f2ec2b05bf485ce8 (diff) | |
download | cowboy-e4da6956fceea1af8e2cdf9fece0e014576ab43c.tar.gz cowboy-e4da6956fceea1af8e2cdf9fece0e014576ab43c.tar.bz2 cowboy-e4da6956fceea1af8e2cdf9fece0e014576ab43c.zip |
Anonymize and improve the cowboy supervision tree.
* Cowboy isn't an OTP application anymore; just a supervisor.
* All processes started by Cowboy are now anonymous.
* All processes related to a listener are now part of its supervision tree.
Diffstat (limited to 'src/cowboy.app.src')
-rw-r--r-- | src/cowboy.app.src | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/cowboy.app.src b/src/cowboy.app.src index d3dd958..6972496 100644 --- a/src/cowboy.app.src +++ b/src/cowboy.app.src @@ -20,7 +20,5 @@ {applications, [ kernel, stdlib - ]}, - {mod, {cowboy_app, []}}, - {env, []} + ]} ]}. |