You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is because the URI is parsed by http::Uri which has a known limitation that it does not parse URIs without authorities. hyperium/http#323
As a work around you can put any authority e.g. unix://banana/tmp/redis.sock. This will parse correctly and the authority is ignored by sccache anyway.
The text was updated successfully, but these errors were encountered:
The documentation https://github.com/mozilla/sccache/blob/main/docs/Redis.md states you can use a unix socket endpoint of
unix:///tmp/redis.sock
. However this gives the errorendpoint is invalid, source: invalid format
.This is because the URI is parsed by
http::Uri
which has a known limitation that it does not parse URIs without authorities. hyperium/http#323As a work around you can put any authority e.g.
unix://banana/tmp/redis.sock
. This will parse correctly and the authority is ignored by sccache anyway.The text was updated successfully, but these errors were encountered: