Skip to content

Commit 451e4d5

Browse files
PKizzleoktalz
authored andcommitted
BUG/MINOR: runtime: Add missing reload socket command termination
1 parent 11b253e commit 451e4d5

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
@@ -109,7 +109,7 @@ func (s *SingleRuntime) readFromSocket(command string, socket socketType) (strin
109109
fullCommand = fmt.Sprintf("set severity-output number;@%v %s;quit\n", 1, command)
110110
}
111111
case masterSocket:
112-
fullCommand = command + ";quit"
112+
fullCommand = command + ";quit\n"
113113
}
114114

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

0 commit comments

Comments
 (0)