Skip to content

Commit 32aaf70

Browse files
committed
khepri
1 parent a66ea2d commit 32aaf70

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

deps/rabbit/src/rabbit_khepri.erl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -397,22 +397,22 @@ is_virgin_node() ->
397397
IsStoreRunning = khepri_cluster:is_store_running(?STORE_ID),
398398
case IsSystemRunning of
399399
true -> ok;
400-
false -> ensure_ra_system_started()
400+
false -> ok = ensure_ra_system_started()
401401
end,
402402
case IsStoreRunning of
403403
true -> ok;
404-
false -> setup()
404+
false -> ok = setup()
405405
end,
406406

407407
IsEmpty = is_empty() =:= true,
408408

409409
case IsStoreRunning of
410410
true -> ok;
411-
false -> _ = khepri:stop(?RA_CLUSTER_NAME)
411+
false -> ok = khepri:stop(?RA_CLUSTER_NAME)
412412
end,
413413
case IsSystemRunning of
414414
true -> ok;
415-
false -> ensure_ra_system_stopped()
415+
false -> ok = ensure_ra_system_stopped()
416416
end,
417417
IsEmpty.
418418

0 commit comments

Comments
 (0)