Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

Commit

Permalink
Fix utils:teardown_var_cache to always return ok
Browse files Browse the repository at this point in the history
  • Loading branch information
Vagabond committed Feb 15, 2022
1 parent c121c79 commit 79f35ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/blockchain_utils.erl
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,8 @@ var_cache_stats() ->

-spec teardown_var_cache() -> ok.
teardown_var_cache() ->
e2qc:teardown(?VAR_CACHE).
e2qc:teardown(?VAR_CACHE),
ok.

init_var_cache() ->
%% TODO could pull cache settings from app env here
Expand Down

0 comments on commit 79f35ff

Please sign in to comment.