File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments