Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
5 changes: 4 additions & 1 deletion src/make_certs.erl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
-module(make_certs).
-compile([export_all, nowarn_export_all]).

-export([all/1, all/2, rootCA/2, intermediateCA/3, endusers/3, enduser/3, revoke/3, gencrl/2, verify/3]).
-export([all/1, all/2, rootCA/2, intermediateCA/3, endusers/3, enduser/3, revoke/3, gencrl/2, verify/3, version/0]).

-record(dn, {commonName,
organizationalUnitName = "Basho Engineering",
Expand All @@ -32,6 +32,9 @@

-define(OpenSSLCmd, "openssl").

version() ->
os:cmd(?OpenSSLCmd ++ " version").

all([DataDir, PrivDir]) ->
all(DataDir, PrivDir).

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