mirror of https://github.com/linkerd/linkerd2.git
proxy: fix intermittent tap match method quickcheck failure (#427)
Closes #413
This commit is contained in:
parent
304f4e12dd
commit
7365c5645a
|
@ -416,7 +416,7 @@ mod tests {
|
|||
let ok =
|
||||
b'A' <= c && c <= b'Z' ||
|
||||
b'a' <= c && c <= b'z' ||
|
||||
b'0' <= c && c <= b'0' ;
|
||||
b'0' <= c && c <= b'9' ;
|
||||
if !ok {
|
||||
err = Some(InvalidMatch::InvalidHttpMethod);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue