Skip to content

Commit 69e0948

Browse files
PKizzleoktalz
authored andcommitted
BUG/MINOR: runtime: Add missing reload socket command termination
1 parent 41bc43d commit 69e0948

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
@@ -104,7 +104,7 @@ func (s *SingleRuntime) readFromSocket(command string, socket socketType) (strin
104104
fullCommand = fmt.Sprintf("set severity-output number;@%v %s;quit\n", s.worker, command)
105105
}
106106
case masterSocket:
107-
fullCommand = fmt.Sprintf("%s;quit", command)
107+
fullCommand = command + ";quit\n"
108108
}
109109

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

0 commit comments

Comments
 (0)