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
f6c81725
Unverified
Commit
f6c81725
authored
Dec 31, 2019
by
Eric_Lee
Committed by
GitHub
Dec 31, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] add session terminated log (#189)
parent
6f1e6812
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
dbswitch.go
pkg/proxy/dbswitch.go
+2
-0
switch.go
pkg/proxy/switch.go
+2
-0
No files found.
pkg/proxy/dbswitch.go
View file @
f6c81725
...
@@ -46,6 +46,7 @@ func (s *DBSwitchSession) Terminate() {
...
@@ -46,6 +46,7 @@ func (s *DBSwitchSession) Terminate() {
default
:
default
:
}
}
s
.
cancel
()
s
.
cancel
()
logger
.
Infof
(
"DBSession %s: receive terminate from admin"
,
s
.
ID
)
}
}
func
(
s
*
DBSwitchSession
)
SessionID
()
string
{
func
(
s
*
DBSwitchSession
)
SessionID
()
string
{
...
@@ -154,6 +155,7 @@ func (s *DBSwitchSession) Bridge(userConn UserConnection, srvConn srvconn.Server
...
@@ -154,6 +155,7 @@ func (s *DBSwitchSession) Bridge(userConn UserConnection, srvConn srvconn.Server
case
<-
s
.
ctx
.
Done
()
:
case
<-
s
.
ctx
.
Done
()
:
msg
:=
i18n
.
T
(
"Database connection terminated by administrator"
)
msg
:=
i18n
.
T
(
"Database connection terminated by administrator"
)
msg
=
utils
.
WrapperWarn
(
msg
)
msg
=
utils
.
WrapperWarn
(
msg
)
logger
.
Infof
(
"DBSession %s: %s"
,
s
.
ID
,
msg
)
utils
.
IgnoreErrWriteString
(
userConn
,
"
\n\r
"
+
msg
)
utils
.
IgnoreErrWriteString
(
userConn
,
"
\n\r
"
+
msg
)
return
return
// 监控窗口大小变化
// 监控窗口大小变化
...
...
pkg/proxy/switch.go
View file @
f6c81725
...
@@ -55,6 +55,7 @@ func (s *SwitchSession) Terminate() {
...
@@ -55,6 +55,7 @@ func (s *SwitchSession) Terminate() {
default
:
default
:
}
}
s
.
cancel
()
s
.
cancel
()
logger
.
Infof
(
"Session %s: receive terminate from admin"
,
s
.
ID
)
}
}
func
(
s
*
SwitchSession
)
SessionID
()
string
{
func
(
s
*
SwitchSession
)
SessionID
()
string
{
...
@@ -179,6 +180,7 @@ func (s *SwitchSession) Bridge(userConn UserConnection, srvConn srvconn.ServerCo
...
@@ -179,6 +180,7 @@ func (s *SwitchSession) Bridge(userConn UserConnection, srvConn srvconn.ServerCo
case
<-
s
.
ctx
.
Done
()
:
case
<-
s
.
ctx
.
Done
()
:
msg
:=
i18n
.
T
(
"Terminated by administrator"
)
msg
:=
i18n
.
T
(
"Terminated by administrator"
)
msg
=
utils
.
WrapperWarn
(
msg
)
msg
=
utils
.
WrapperWarn
(
msg
)
logger
.
Infof
(
"Session %s: %s"
,
s
.
ID
,
msg
)
utils
.
IgnoreErrWriteString
(
userConn
,
"
\n\r
"
+
msg
)
utils
.
IgnoreErrWriteString
(
userConn
,
"
\n\r
"
+
msg
)
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