Allow delta metrics in wavefront parser (#5115)
This commit is contained in:
committed by
Daniel Nelson
parent
03a5fc9b88
commit
04dfa430ef
@@ -40,6 +40,8 @@ func (s *PointScanner) Scan() (Token, string) {
|
||||
return LETTER, string(ch)
|
||||
} else if isNumber(ch) {
|
||||
return NUMBER, string(ch)
|
||||
} else if isDelta(ch) {
|
||||
return DELTA, string(ch)
|
||||
}
|
||||
|
||||
// Otherwise read the individual character.
|
||||
|
||||
Reference in New Issue
Block a user