fix usage of regex.Match in cloudwatch module (#986)
This commit is contained in:
parent
bd5c119f85
commit
f0db3742de
1 changed files with 1 additions and 1 deletions
|
@ -329,7 +329,7 @@ func (cw *CloudwatchSource) LogStreamManager(in chan LogStreamTailConfig, outCha
|
|||
}
|
||||
|
||||
if cw.Config.StreamRegexp != nil {
|
||||
match, err := regexp.Match(newStream.StreamName, []byte(*cw.Config.StreamRegexp))
|
||||
match, err := regexp.Match(*cw.Config.StreamRegexp, []byte(newStream.StreamName))
|
||||
if err != nil {
|
||||
cw.logger.Warningf("invalid regexp : %s", err)
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue