Skip to content

Commit 1159bd0

Browse files
PKizzleGopher Bot
authored andcommitted
BUG/MINOR: runtime: Add missing reload socket command termination
1 parent d741094 commit 1159bd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/runtime_single_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ func (s *SingleRuntime) readFromSocket(command string, socket socketType) (strin
103103
fullCommand = fmt.Sprintf("set severity-output number;@%v %s;quit\n", 1, command)
104104
}
105105
case masterSocket:
106-
fullCommand = command + ";quit"
106+
fullCommand = command + ";quit\n"
107107
}
108108

109109
_, err = api.Write([]byte(fullCommand))

0 commit comments

Comments
 (0)