Merge pull request #12545 from SergeTupchiy/fix-typo-tls_gc

chore(emqx_tls_certfile_gc): fix typo
This commit is contained in:
SergeTupchiy 2024-02-21 10:11:13 +02:00 committed by GitHub
commit f7a7b7c8e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@
collect_files/2
]).
-define(GC_INVERVAL, 5 * 60 * 1000).
-define(GC_INTERVAL, 5 * 60 * 1000).
-define(HAS_OWNER_READ(Mode), ((Mode band 8#00400) > 0)).
-define(HAS_OWNER_WRITE(Mode), ((Mode band 8#00200) > 0)).
@ -84,7 +84,7 @@
-spec start_link() ->
{ok, pid()}.
start_link() ->
start_link(?GC_INVERVAL).
start_link(?GC_INTERVAL).
-spec start_link(_Interval :: pos_integer()) ->
{ok, pid()}.