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

Merge pull request #137 from jumpserver/dev_bugfix

[Bugfix] fix not recording command bug
parents e6c8f4dd 61208f64
......@@ -55,8 +55,8 @@ type Parser struct {
command string
output string
cmdInputParser CmdParser
cmdOutputParser CmdParser
cmdInputParser *CmdParser
cmdOutputParser *CmdParser
cmdFilterRules []model.SystemUserFilterRule
closed chan struct{}
......
......@@ -12,10 +12,10 @@ import (
var ps1Pattern = regexp.MustCompile(`^\[?.*@.*\]?[\\$#]\s|mysql>\s`)
func NewCmdParser(sid, name string) CmdParser {
func NewCmdParser(sid, name string) *CmdParser {
parser := CmdParser{id: sid, name:name}
parser.initial()
return parser
return &parser
}
type CmdParser struct {
......
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