Skip to content

Commit

Permalink
Merge branch 'develop' of git://github.com/basho/riak_core into uw-ex…
Browse files Browse the repository at this point in the history
…ometer-dev
  • Loading branch information
uwiger committed Nov 28, 2013
2 parents e84693f + 60fc0b6 commit 69afc9e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
7 changes: 7 additions & 0 deletions priv/riak_core.schema
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,13 @@
Size > 1 andalso (Size band (Size-1) =:= 0)
end}.

%% @doc Number of VNodes allowed to do handoff concurrently.
{mapping, "handoff_concurrency", "riak_core.handoff_concurrency", [
{datatype, integer},
{default, 2},
{commented, 2}
]}.

%% @doc Default location of ringstate
{mapping, "ring.state_dir", "riak_core.ring_state_dir", [
{default, "{{ring_state_dir}}"}
Expand Down
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{xref_checks, [undefined_function_calls]}.

{deps, [
{lager, "2.0.0", {git, "git://github.com/basho/lager.git", {tag, "2.0.0"}}},
{lager, "2.0.*", {git, "git://github.com/basho/lager.git", {tag, "2.0.1"}}},
{poolboy, ".*", {git, "git://github.com/basho/poolboy.git", {branch, "develop"}}},
{basho_stats, ".*", {git, "git://github.com/basho/basho_stats.git", {branch, "develop"}}},
{riak_sysmon, ".*", {git, "git://github.com/basho/riak_sysmon.git", {branch, "develop"}}},
Expand Down
6 changes: 5 additions & 1 deletion src/riak_core.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@
crypto,
riak_sysmon,
os_mon,
exometer
exometer,
basho_stats,
eleveldb,
pbkdf2,
poolboy
]},
{mod, {riak_core_app, []}},
{env, [
Expand Down
2 changes: 1 addition & 1 deletion src/riak_core_tracer.erl
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ handle_call({collect, Duration, Nodes}, _From, State) ->
end,
Pid
end, self()}),
dbg:p(all, call),
[{ok, N} = dbg:n(N) || N <- Nodes],
dbg:p(all, [call]),
dbg:tpl(?MODULE, trigger_sentinel, []),
add_tracers(State#state.mfs),
{reply, ok, State#state{trace=[], stop_tref = Tref, tracing = true}};
Expand Down

0 comments on commit 69afc9e

Please sign in to comment.