mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-07 00:55:21 +00:00
16 lines
532 B
Erlang
16 lines
532 B
Erlang
%% Intercepts functions for the riak_test in ../tests/repl_rt_heartbeat.erl
|
|
-module(riak_repl2_rtsource_helper_intercepts).
|
|
-compile(export_all).
|
|
-include("intercept.hrl").
|
|
|
|
%% @doc Forward the heartbeat messages from the rt source by
|
|
%% calling the original function.
|
|
forward_send_heartbeat(Pid) ->
|
|
%% ?I_INFO("forward_heartbeat"),
|
|
riak_repl2_rtsource_helper_orig:send_heartbeat_orig(Pid).
|
|
|
|
%% @doc Drop the heartbeat messages from the rt source.
|
|
drop_send_heartbeat(_Pid) ->
|
|
%% ?I_INFO("drop_heartbeat"),
|
|
ok.
|