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