Open freelamb opened 8 years ago
file path: message/redis.go
reg := regexp.MustCompile("(.+)@(.+)#(.+)|(.+)@(.+)")
This match for ""@""# or ""@"", but for the file like *.conf, comment(#) is not required.
So, it's a good idea for change to the following
reg := regexp.MustCompile("(.+)@(.+)")
这个bug我也遇到了
file path: message/redis.go
This match for ""@""# or ""@"", but for the file like *.conf, comment(#) is not required.
So, it's a good idea for change to the following