diff options
author | Matthias Radestock <matthias@lshift.net> | 2009-01-08 22:57:02 +0000 |
---|---|---|
committer | Matthias Radestock <matthias@lshift.net> | 2009-01-08 22:57:02 +0000 |
commit | fbd08ac50a6418da6dc6ec04e048e9bcfd25378e (patch) | |
tree | 18f6ae3ad39ff90f5d2a13600c201a5b8d3db895 /src | |
parent | b53ab4e9ad895f1fe0830cd153482693a2b18af2 (diff) | |
download | rabbitmq-server-fbd08ac50a6418da6dc6ec04e048e9bcfd25378e.tar.gz |
oops, meant to advertise this as an ordinary gen_server
which it still is, since I left the gen_server:start_link in place.
Diffstat (limited to 'src')
-rw-r--r-- | src/rabbit_limiter.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_limiter.erl b/src/rabbit_limiter.erl index e1d92f72..7ecdb6fb 100644 --- a/src/rabbit_limiter.erl +++ b/src/rabbit_limiter.erl @@ -31,7 +31,7 @@ -module(rabbit_limiter). --behaviour(gen_server2). +-behaviour(gen_server). -export([init/1, terminate/2, code_change/3, handle_call/3, handle_cast/2, handle_info/2]). |