Merge pull request #9365 from thalesmg/fix-crl-refresh-config-rv44

fix(crl): correct return for `handle_cast(refresh_config)`
This commit is contained in:
Thales Macedo Garitezi 2022-11-14 16:36:15 -03:00 committed by GitHub
commit 094bf8985a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ handle_cast(refresh_config, State0) ->
, http_timeout => HTTPTimeoutMS , http_timeout => HTTPTimeoutMS
, urls => URLs , urls => URLs
}), }),
State; {noreply, State};
handle_cast(_Cast, State) -> handle_cast(_Cast, State) ->
{noreply, State}. {noreply, State}.