Browse Source

Correct return of handle_cast stop

Oliver Ferrigni 10 years ago
parent
commit
e71ab8e055
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/pooler_starter.erl

+ 1 - 1
src/pooler_starter.erl

@@ -111,7 +111,7 @@ handle_cast(accept_member, #starter{msg = Msg, parent = Parent, pool = #pool{nam
     {noreply, State};
 
 handle_cast(stop, State) ->
-    {stop, normal, stop_ok, State};
+    {stop, normal, State};
 
 
 handle_cast(_Request, State) ->