From 34616ca479c5797363e6b9e0c286b2e450534566 Mon Sep 17 00:00:00 2001 From: Philipp Kolberg <39984529+PKizzle@users.noreply.github.com> Date: Mon, 25 Aug 2025 01:45:52 +0200 Subject: [PATCH] BUG/MINOR: runtime: Add missing reload socket command termination --- runtime/runtime_single_client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/runtime_single_client.go b/runtime/runtime_single_client.go index e0abc00c..0b5828bc 100644 --- a/runtime/runtime_single_client.go +++ b/runtime/runtime_single_client.go @@ -109,7 +109,7 @@ func (s *SingleRuntime) readFromSocket(command string, socket socketType) (strin fullCommand = fmt.Sprintf("set severity-output number;@%v %s;quit\n", 1, command) } case masterSocket: - fullCommand = command + ";quit" + fullCommand = command + ";quit\n" } _, err = api.Write([]byte(fullCommand))