diff options
author | Matthias Radestock <matthias@rabbitmq.com> | 2010-08-13 04:26:45 +0100 |
---|---|---|
committer | Matthias Radestock <matthias@rabbitmq.com> | 2010-08-13 04:26:45 +0100 |
commit | 47f5b3df329ca7b75e0e090e9bd09338fe716b4d (patch) | |
tree | 20bd1e0f4f49a4131b1b9c5c3bc453481eeec562 /src/worker_pool_sup.erl | |
parent | 1f982ed96126acf6654bd9db7bed34f21556eaf4 (diff) | |
download | rabbitmq-server-47f5b3df329ca7b75e0e090e9bd09338fe716b4d.tar.gz |
use consistent return types for start/start_link functionsbug23120
Diffstat (limited to 'src/worker_pool_sup.erl')
-rw-r--r-- | src/worker_pool_sup.erl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/worker_pool_sup.erl b/src/worker_pool_sup.erl index afa21164..177a1453 100644 --- a/src/worker_pool_sup.erl +++ b/src/worker_pool_sup.erl @@ -41,9 +41,8 @@ -ifdef(use_specs). --spec(start_link/0 :: () -> 'ignore' | rabbit_types:ok_or_error2(pid(), any())). --spec(start_link/1 :: (non_neg_integer()) -> - 'ignore' | rabbit_types:ok_or_error2(pid(), any())). +-spec(start_link/0 :: () -> {'ok', pid()} | {'error', any()}). +-spec(start_link/1 :: (non_neg_integer()) -> {'ok', pid()} | {'error', any()}). -endif. |