Skip to content

Commit 2da0aa9

Browse files
authored
Merge pull request #3604 from ActiveState/DX-3163
Rename Messages To Notifications
2 parents 7bc14c0 + acaa7e1 commit 2da0aa9

17 files changed

Lines changed: 968 additions & 1388 deletions

File tree

cmd/state-svc/internal/messages/messages.go

Lines changed: 0 additions & 255 deletions
This file was deleted.

cmd/state-svc/internal/messages/condition.go renamed to cmd/state-svc/internal/notifications/condition.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package messages
1+
package notifications
22

33
import (
44
"regexp"
@@ -57,7 +57,7 @@ func conditionFuncMap() template.FuncMap {
5757
"regexMatch": func(str, pattern string) bool {
5858
rx, err := regexp.Compile(pattern)
5959
if err != nil {
60-
multilog.Error("Messages: Could not compile regex pattern: %s", err)
60+
multilog.Error("Notifications: Could not compile regex pattern: %s", err)
6161
return false
6262
}
6363
return rx.MatchString(str)

0 commit comments

Comments
 (0)