fix: sql文件字段名调整

This commit is contained in:
meilin.huang
2022-07-24 18:54:23 +08:00
parent 577802e5ad
commit 366563a0fe
3 changed files with 10 additions and 11 deletions

View File

@@ -130,7 +130,7 @@ func (stm *SshTunnelMachine) Close() {
global.Log.Infof("ssh隧道机器[%d]未被使用, 关闭隧道...", stm.machineId)
err := stm.SshClient.Close()
if err != nil {
global.Log.Errorf("关闭ssh隧道机器[%s]发生错误: %s", stm.machineId, err.Error())
global.Log.Errorf("关闭ssh隧道机器[%d]发生错误: %s", stm.machineId, err.Error())
}
}
delete(sshTunnelMachines, stm.machineId)