diff options
author | Loïc Hoguin <[email protected]> | 2013-09-09 16:46:21 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-09-09 16:46:21 +0200 |
commit | 1a4e7a86185021f1f1eb50b3fde5043570da3f94 (patch) | |
tree | 1e562eda881ba43b34ddcc76d14017723afe66e2 /examples/hello_world/src | |
parent | bbe42d9bc5a2655daea2f4d099c002c93ae715b7 (diff) | |
download | cowboy-1a4e7a86185021f1f1eb50b3fde5043570da3f94.tar.gz cowboy-1a4e7a86185021f1f1eb50b3fde5043570da3f94.tar.bz2 cowboy-1a4e7a86185021f1f1eb50b3fde5043570da3f94.zip |
Fix the list of registered processes in the examples
Diffstat (limited to 'examples/hello_world/src')
-rw-r--r-- | examples/hello_world/src/hello_world.app.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hello_world/src/hello_world.app.src b/examples/hello_world/src/hello_world.app.src index eeab835..7512a2f 100644 --- a/examples/hello_world/src/hello_world.app.src +++ b/examples/hello_world/src/hello_world.app.src @@ -4,7 +4,7 @@ {description, "Cowboy Hello World example."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [hello_world_sup]}, {applications, [ kernel, stdlib, |