Module: kamailio Branch: master Commit: e9f1a426b6ca5fb9b4c9dc67f2b3f744c20f40b0 URL: https://github.com/kamailio/kamailio/commit/e9f1a426b6ca5fb9b4c9dc67f2b3f744c20f40b0
Author: Henning Westerholt <[email protected]> Committer: Henning Westerholt <[email protected]> Date: 2023-02-14T10:27:25Z sipcapture: remove not used parameter table_time_suffix --- Modified: src/modules/sipcapture/sipcapture.c --- Diff: https://github.com/kamailio/kamailio/commit/e9f1a426b6ca5fb9b4c9dc67f2b3f744c20f40b0.diff Patch: https://github.com/kamailio/kamailio/commit/e9f1a426b6ca5fb9b4c9dc67f2b3f744c20f40b0.patch --- diff --git a/src/modules/sipcapture/sipcapture.c b/src/modules/sipcapture/sipcapture.c index 46514a3eb6..c81b8c45e6 100644 --- a/src/modules/sipcapture/sipcapture.c +++ b/src/modules/sipcapture/sipcapture.c @@ -178,7 +178,6 @@ static int hep_version(struct sip_msg *msg); static str db_url = str_init(DEFAULT_DB_URL); static str table_name = str_init("sip_capture"); static str hash_source = str_init("call_id"); -static str table_time_suffix = str_init("%Y%m%D"); static str mt_mode = str_init("rand"); static str date_column = str_init("date"); static str micro_ts_column = str_init("micro_ts"); @@ -400,7 +399,6 @@ static param_export_t params[] = { {"capture_bad_msgs", INT_PARAM, &parse_bad_msgs }, {"insert_retries", INT_PARAM, &insert_retries}, {"insert_retry_timeout", INT_PARAM, &insert_retry_timeout}, - {"table_time_suffix", PARAM_STR, &table_time_suffix}, {"topoh_unmask", PARAM_INT, &sc_topoh_unmask}, {"nonsip_hook", PARAM_INT, &nonsip_hook}, {"event_callback", PARAM_STR, &sc_event_callback}, _______________________________________________ Kamailio (SER) - Development Mailing List To unsubscribe send an email to [email protected]
