Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
koko
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
koko
Commits
79010965
Unverified
Commit
79010965
authored
Oct 25, 2019
by
Eric_Lee
Committed by
GitHub
Oct 25, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Bugfix] resue notice info msg (#117)
parent
0be79d58
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
proxy.go
pkg/proxy/proxy.go
+5
-1
assets.go
pkg/service/assets.go
+1
-1
No files found.
pkg/proxy/proxy.go
View file @
79010965
...
@@ -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
())
}
}
...
...
pkg/service/assets.go
View file @
79010965
...
@@ -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
.
Error
f
(
"Get system user %s asset %s auth info failed"
,
systemUserID
,
assetID
)
}
}
return
return
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment