1
0
镜像自地址 https://github.com/tuna/tunasync.git 已同步 2025-12-08 23:46:47 +00:00

2 次代码提交

作者 SHA1 备注 提交日期
zyx
45e5d900fb bump version to 0.6.5 2020-06-08 22:30:28 +08:00
zyx
7b0cd490b7 fix misuse of a variable 2020-06-08 22:23:12 +08:00
共有 2 个文件被更改,包括 2 次插入2 次删除

查看文件

@@ -1,4 +1,4 @@
package internal
// Version of the program
const Version string = "0.6.4"
const Version string = "0.6.5"

查看文件

@@ -189,7 +189,7 @@ func (m *mirrorJob) Run(managerChan chan<- jobMessage, semaphore chan empty) err
syncErr = errors.New("killed by manager")
}
if termErr != nil {
logger.Errorf("failed to terminate provider %s: %s", m.Name(), err.Error())
logger.Errorf("failed to terminate provider %s: %s", m.Name(), termErr.Error())
return termErr
}