[HSS] Add hss_event_init after change to event system (#2838)

* Add hss_event_init after change to event system

* also include hss_event_final
This commit is contained in:
jmasterfunk84 2024-01-03 06:15:16 -06:00 committed by GitHub
parent 1f8f20da34
commit ad2154ac2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -36,6 +36,7 @@ int hss_initialize(void)
if (rv != OGS_OK) return rv;
hss_context_init();
hss_event_init();
rv = hss_context_parse_config();
if (rv != OGS_OK) return rv;
@ -69,6 +70,7 @@ void hss_terminate(void)
ogs_dbi_final();
hss_context_final();
hss_event_final();
return;
}