1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2025-03-31 01:24:31 +00:00

removed line feeds

This commit is contained in:
postmannen 2022-10-14 10:22:51 +02:00
parent 757792c787
commit 852cd86c61

View file

@ -153,7 +153,6 @@ func (m methodREQCopySrc) handler(proc process, message Message, node string) ([
}
if len(message.MethodArgs) > 5 && message.MethodArgs[5] != "" {
fmt.Printf("\n\n\n Lenght was more than 5 for arguments\n\n")
// Check if file permissions were set, if not use default.
var err error
folderPermission, err = strconv.ParseUint(message.MethodArgs[5], 8, 32)
@ -265,7 +264,7 @@ func (m methodREQCopySrc) handler(proc process, message Message, node string) ([
proc.toRingbufferCh <- []subjectAndMessage{sam}
replyData := fmt.Sprintf("info: succesfully initiated copy source process: procName=%v, srcNode=%v, srcPath=%v, dstNode=%v, dstPath=%v, starting sub process=%v for the actual copying\n", copySrcSubProc.processName, node, SrcFilePath, DstNode, DstFilePath, subProcessName)
replyData := fmt.Sprintf("info: succesfully initiated copy source process: procName=%v, srcNode=%v, srcPath=%v, dstNode=%v, dstPath=%v, starting sub process=%v for the actual copying", copySrcSubProc.processName, node, SrcFilePath, DstNode, DstFilePath, subProcessName)
newReplyMessage(proc, message, []byte(replyData))
@ -338,7 +337,7 @@ func (m methodREQCopyDst) handler(proc process, message Message, node string) ([
go copyDstSubProc.spawnWorker()
fp := filepath.Join(cia.DstDir, cia.DstFile)
replyData := fmt.Sprintf("info: succesfully initiated copy source process: procName=%v, srcNode=%v, dstPath=%v, starting sub process=%v for the actual copying\n", copyDstSubProc.processName, node, fp, subProcessName)
replyData := fmt.Sprintf("info: succesfully initiated copy source process: procName=%v, srcNode=%v, dstPath=%v, starting sub process=%v for the actual copying", copyDstSubProc.processName, node, fp, subProcessName)
newReplyMessage(proc, message, []byte(replyData))