Unverified Commit 79010965 authored by Eric_Lee's avatar Eric_Lee Committed by GitHub

[Bugfix] resue notice info msg (#117)

parent 0be79d58
...@@ -140,7 +140,11 @@ func (p *ProxyServer) getServerConn() (srvConn srvconn.ServerConnection, err err ...@@ -140,7 +140,11 @@ func (p *ProxyServer) getServerConn() (srvConn srvconn.ServerConnection, err err
}() }()
go p.sendConnectingMsg(done, config.GetConf().SSHTimeout*time.Second) go p.sendConnectingMsg(done, config.GetConf().SSHTimeout*time.Second)
} else { } else {
utils.IgnoreErrWriteString(p.UserConn, utils.WrapperString("You reuse SSH Conn from cache.\r\n", utils.Green)) reuseMsg := fmt.Sprintf("You reuse SSH client (%s@%s) [current reuse count: %d]",
p.SystemUser.Username, p.Asset.Hostname, p.cacheSSHClient.RefCount())
utils.IgnoreErrWriteString(p.UserConn, utils.WrapperString("Please notice:\r\n", utils.Green))
utils.IgnoreErrWriteString(p.UserConn, utils.WrapperString(reuseMsg+"\r\n", utils.Green))
logger.Infof("Request %s: Reuse connection for SSH. SSH client %p current ref: %d", p.UserConn.ID(), logger.Infof("Request %s: Reuse connection for SSH. SSH client %p current ref: %d", p.UserConn.ID(),
p.cacheSSHClient, p.cacheSSHClient.RefCount()) p.cacheSSHClient, p.cacheSSHClient.RefCount())
} }
......
...@@ -11,7 +11,7 @@ func GetSystemUserAssetAuthInfo(systemUserID, assetID string) (info model.System ...@@ -11,7 +11,7 @@ func GetSystemUserAssetAuthInfo(systemUserID, assetID string) (info model.System
Url := fmt.Sprintf(SystemUserAssetAuthURL, systemUserID, assetID) Url := fmt.Sprintf(SystemUserAssetAuthURL, systemUserID, assetID)
_, err := authClient.Get(Url, &info) _, err := authClient.Get(Url, &info)
if err != nil { if err != nil {
logger.Error("Get system user %s asset %s auth info failed", systemUserID, assetID) logger.Errorf("Get system user %s asset %s auth info failed", systemUserID, assetID)
} }
return return
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment