Browse Source

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.
Anthony Ramine 14 years ago
parent
commit
9c155bfea7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/cowboy.app.src

+ 1 - 1
src/cowboy.app.src

@@ -16,7 +16,7 @@
 	{description, "Small, fast, modular HTTP server."},
 	{description, "Small, fast, modular HTTP server."},
 	{vsn, "0.1.0"},
 	{vsn, "0.1.0"},
 	{modules, []},
 	{modules, []},
-	{registered, []},
+	{registered, [cowboy_sup]},
 	{applications, [
 	{applications, [
 		kernel,
 		kernel,
 		stdlib
 		stdlib