Allow uppercase letters in stream name
This commit is contained in:
parent
e6fd4f6352
commit
a429216735
|
@ -21,7 +21,7 @@ import (
|
|||
|
||||
var (
|
||||
// Precompile regex
|
||||
validPath = regexp.MustCompile("^/[a-z0-9@_-]*$")
|
||||
validPath = regexp.MustCompile("^/[a-zA-Z0-9@_-]*$")
|
||||
|
||||
counterMutex = new(sync.Mutex)
|
||||
connectedClients = make(map[string]map[string]int64)
|
||||
|
|
Loading…
Reference in New Issue