fix(crl): correct return for `handle_cast(refresh_config)`
This commit is contained in:
parent
bf6ffe103f
commit
92d80b5e55
|
@ -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}.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue