Skip to content

Commit

Permalink
Add log message to probe ambigious error
Browse files Browse the repository at this point in the history
  • Loading branch information
kuenishi committed Jan 22, 2015
1 parent 4662392 commit ccf4f34
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/riak_pipe_builder.erl
Expand Up @@ -199,6 +199,12 @@ handle_info({'DOWN', Ref, process, Pid, Reason}, StateName,
case lists:keytake(Ref, 2, Alive) of
{value, {#fitting{pid=Pid}, Ref}, Rest} ->
%% one of our fittings died
case Reason of
normal -> ok;
_ ->
lager:warning("~p: Fitting worker ~p died. Reason: ~p",
[StateName, Pid, Reason])
end,
maybe_shutdown(Reason,
StateName,
State#state{alive=Rest});
Expand Down

5 comments on commit ccf4f34

@borshop
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from cmeiklejohn
at ccf4f34

@borshop
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging basho/riak_pipe/bugfix/ku/add-probe-logmsg = ccf4f34 into borshop-integration-92-bugfix/ku/add-probe-logmsg

@borshop
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

basho/riak_pipe/bugfix/ku/add-probe-logmsg = ccf4f34 merged ok, testing candidate = c8fc8da

@borshop
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@borshop
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding 2.0 to borshop-integration-92-bugfix/ku/add-probe-logmsg = c8fc8da

Please sign in to comment.