diff options
author | Brad Anderson <brad@cloudant.com> | 2010-05-11 10:42:12 -0400 |
---|---|---|
committer | Brad Anderson <brad@cloudant.com> | 2010-05-11 10:42:12 -0400 |
commit | 60ce78e4cab5d3f379c50e9a51c4d1dba71b1b1c (patch) | |
tree | f383629fff0cfbd4153bbd8c87febc8f37251e39 | |
parent | a7bdc595544d23457b2ffdea4514d6a9ef4634eb (diff) |
formatting changes for rexi_server
-rw-r--r-- | src/rexi_server.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rexi_server.erl b/src/rexi_server.erl index 6f8b8641..10bc90d3 100644 --- a/src/rexi_server.erl +++ b/src/rexi_server.erl @@ -1,6 +1,6 @@ -module(rexi_server). -behaviour(gen_server). --export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2, +-export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2, code_change/3]). -export([start_link/0, init_p/2]). @@ -18,7 +18,7 @@ init([]) -> {ok, #st{}}. handle_call(_Request, _From, St) -> - {reply, ok, St}. + {reply, ignored, St}. handle_cast({doit, From, MFA}, #st{workers=Workers} = St) -> {LocalPid, Ref} = spawn_monitor(?MODULE, init_p, [From, MFA]), |