Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add test for reaping tombs, and reflecting API changes associated wit… #4

Merged
merged 8 commits into from
Sep 14, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions groups/nextgenrepl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ nextgenrepl_bouncingtomb
nextgenrepl_deletemodes
nextgenrepl_deletewithfailure
nextgenrepl_external_reconcile
nextgenrepl_reaptombs
nextgenrepl_rtq_auto
nextgenrepl_rtq_autocrdt
nextgenrepl_rtq_autotypes
Expand Down
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
{getopt, ".*", {git, "https://github.com/jcomellas/getopt", {tag, "v1.0.1"}}},
{meck, {git, "https://github.com/eproxus/meck.git", {tag, "0.8.13"}}},
{mapred_verify, ".*", {git, "https://github.com/nhs-riak/mapred_verify", {branch, "nhse-develop-3.0"}}},
{riakhttpc, ".*", {git, "https://github.com/nhs-riak/riak-erlang-http-client", {branch, "nhse-develop-3.0"}}},
{riakhttpc, ".*", {git, "https://github.com/nhs-riak/riak-erlang-http-client", {branch, "nhse-d30-nhskv5"}}},
{kvc, "1.7.0", {git, "https://github.com/etrepum/kvc", {tag, "v1.7.0"}}},
{kv_index_tictactree, ".*", {git, "https://github.com/nhs-riak/kv_index_tictactree.git", {branch, "nhse-develop-3.0"}}}
]}.
Expand Down
4 changes: 2 additions & 2 deletions tests/nextgenrepl_deletewithfailure.erl
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ test_repl(Protocol, [ClusterA, ClusterB]) ->
all,
count}),
lager:info("Counted ~w active keys on B1 all time", [KB]),
{ok, {keys, TBL}} = aae_fold(NodeB1,
{ok, {keysclocks, TBL}} = aae_fold(NodeB1,
Protocol,
{find_tombs,
?TEST_BUCKET, all,
Expand Down Expand Up @@ -468,7 +468,7 @@ fullsync_check(Protocol, {SrcNode, SrcNVal, SnkCluster},
AAEResult.

length_aae_fold(Node, Protocol, Query) ->
{ok, {keys, List}} = aae_fold(Node, Protocol, Query),
{ok, {_, List}} = aae_fold(Node, Protocol, Query),
length(List).

aae_fold(Node, Protocol, Query) ->
Expand Down
Loading