diff options
author | Loïc Hoguin <[email protected]> | 2012-02-24 08:09:28 -0800 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2012-02-24 08:09:28 -0800 |
commit | f7884475a5f9cf580f41a9f146211a5be8523dc3 (patch) | |
tree | 5e9be052895a72908aa8f853d7bd3f3d196aa30b /src/cowboy_sup.erl | |
parent | 5f5d41054146be22f49fa3510d745c3d386bd2e9 (diff) | |
parent | f3de0869801d3909cc5a5d5dbee81941481a0c2e (diff) | |
download | cowboy-f7884475a5f9cf580f41a9f146211a5be8523dc3.tar.gz cowboy-f7884475a5f9cf580f41a9f146211a5be8523dc3.tar.bz2 cowboy-f7884475a5f9cf580f41a9f146211a5be8523dc3.zip |
Merge pull request #146 from ostinelli/f3de0869801d3909cc5a5d5dbee81941481a0c2e
Polish dialyzer warnings on supervisor init/1
Diffstat (limited to 'src/cowboy_sup.erl')
-rw-r--r-- | src/cowboy_sup.erl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/cowboy_sup.erl b/src/cowboy_sup.erl index 34591bc..502c592 100644 --- a/src/cowboy_sup.erl +++ b/src/cowboy_sup.erl @@ -29,7 +29,13 @@ start_link() -> %% supervisor. --spec init([]) -> {ok, {{one_for_one, 10, 10}, [{_, _, _, _, _, _}, ...]}}. +-spec init([]) -> {'ok', {{'one_for_one', 10, 10}, [{ + any(), {atom() | tuple(), atom(), 'undefined' | [any()]}, + 'permanent' | 'temporary' | 'transient', + 'brutal_kill' | 'infinity' | non_neg_integer(), + 'supervisor' | 'worker', + 'dynamic' | [atom() | tuple()]}] +}}. init([]) -> Procs = [{cowboy_clock, {cowboy_clock, start_link, []}, permanent, 5000, worker, [cowboy_clock]}], |