Commit 61208f64 authored by Eric's avatar Eric

[Bugfix] fix not recording command bug

parent e6c8f4dd
......@@ -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