From 418c1f341678a44d309fe6b6436ec7b05f9e62d3 Mon Sep 17 00:00:00 2001 From: Nedyalko Dyakov Date: Wed, 27 Aug 2025 15:16:34 +0300 Subject: [PATCH] fix log order --- hitless/notification_handler.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hitless/notification_handler.go b/hitless/notification_handler.go index 9dc4b680..dd2a09d1 100644 --- a/hitless/notification_handler.go +++ b/hitless/notification_handler.go @@ -171,7 +171,8 @@ func (snh *NotificationHandler) handleMigrating(ctx context.Context, handlerCtx // Apply relaxed timeout to this specific connection if snh.manager.config.LogLevel >= 3 { // Debug level internal.Logger.Printf(ctx, "hitless: conn[%d] applying relaxed timeout (%v) for MIGRATING notification", - snh.manager.config.RelaxedTimeout, conn.GetID()) + conn.GetID(), + snh.manager.config.RelaxedTimeout) } conn.SetRelaxedTimeout(snh.manager.config.RelaxedTimeout, snh.manager.config.RelaxedTimeout) return nil