conf: change socket path to /var/run/logcorrelator/http.socket

- Update all documentation and configuration files
- Update test cases

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
Jacquin Antoine
2026-03-01 02:14:31 +01:00
parent 395af61497
commit c61774f8ec
5 changed files with 10 additions and 10 deletions

View File

@ -116,8 +116,8 @@ static void test_parse_enabled_off(void **state)
static void test_parse_socket_path_valid(void **state)
{
(void)state;
const char *result = parse_socket_path("/var/run/logcorrelator/http.sock");
assert_string_equal(result, "/var/run/logcorrelator/http.sock");
const char *result = parse_socket_path("/var/run/logcorrelator/http.socket");
assert_string_equal(result, "/var/run/logcorrelator/http.socket");
}
/* Test: Parse socket path empty */