From bdcb049859e8ebd1b5f8c6d87aa9243f7528aa00 Mon Sep 17 00:00:00 2001 From: Csaba Tuncsik Date: Tue, 14 Oct 2025 10:06:36 +0200 Subject: [PATCH] fix(core): Set rfc3164 option to false for syslog client initialization (#20664) --- .../message-event-bus-destination-syslog.ee.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/cli/src/eventbus/message-event-bus-destination/message-event-bus-destination-syslog.ee.ts b/packages/cli/src/eventbus/message-event-bus-destination/message-event-bus-destination-syslog.ee.ts index a624673cd08..565fafe7afb 100644 --- a/packages/cli/src/eventbus/message-event-bus-destination/message-event-bus-destination-syslog.ee.ts +++ b/packages/cli/src/eventbus/message-event-bus-destination/message-event-bus-destination-syslog.ee.ts @@ -57,6 +57,7 @@ export class MessageEventBusDestinationSyslog facility: syslog.Facility.Local0, // severity: syslog.Severity.Error, port: this.port, + rfc3164: false, transport: options.protocol !== undefined && options.protocol === 'tcp' ? syslog.Transport.Tcp