Hi! I was using warp 0.1.10 and a panic appeared that does not seems to by on my side, so here is the backtrace:
c01daaf278c04bcf8384f3bde99d35b8-symbolicated.txt
For some context the server is ping on the "/" route and always respond with a 405 every 10-20 secondes or so.
x.x.x.x:yyyy "GET / HTTP/1.1" 405 "-" "-" 20.3碌s
Yep, looks like a bug in warp! Do you happen to have any more details about what warp::path filters are used?
Yes, nothing really interresting:

This is seeming fairly strange... Is it possible the request is a CONNECT host:port?
That's the only way I could trigger that panic. I've patched that on master, if you want to see if that fixes your problem.
I am not able to reproduce the crash by triggering it using the CONNECT http method on the warp non-patched version. It is possible due to a CONNECT request, our server is under a load-balancer that we can not control.
Well, I've published v0.1.12 with said fix. That said, it shouldn't affect only CONNECT requests, but any instance where the path doesn't start with /.
I'm going to close as hopefully fixed. If it still occurs after upgrading, we can re-open!