Christoph Reiter
Christoph Reiter
hostname.local doesn't seem to be supported, I just tried with the latest mpdroid beta and it can't connect. see https://code.google.com/p/android/issues/detail?id=19550
I agree. Thanks for mpdroid btw
You can use the normal guzzle logger and log the custom header this middleware adds: ```php ... new MessageFormatter("... CACHE={res_header_X-Kevinrob-Cache}"); ... ```
In general there is some problem with things getting cached and only "fixing themselves" after some minutes.
I didn't quite get the existing logic so I've tried to clean it up here: https://github.com/msys2/msys2-main-server/blob/6bf6893a8f6db1bac250897e60e9231ee742d86a/mirrorbits/0001-Rework-the-mirror-selection-logic.patch Maybe someone finds it useful. (This also means my links above no longer show...
> If there is a specific need to include static files under a router, could you outline why that feature would be more useful then the basic mounting on the...
Turns out what I actually want is to mount another FastAPI() like so ``` subapp = FastAPI() app = FastAPI() subapp.mount("/prefix", subapp) ``` This is more in line with flask...
> @lazka Good to know that's a solution. Would this introduce any additional latency (because of the duplicated "bookkeeping", FastAPI/starlette does for each ASGI request? Or is that not something...
Adding a new asset, then delete the old one and then rename the uploaded one might make it a bit more robust.
> @lazka, unfortunately, the API does not support renaming an asset, does it? There is https://developer.github.com/v3/repos/releases/#update-a-release-asset but I've never worked with the github API, so I might be missing something....