Ryan McGuire
Ryan McGuire
I'm trying to figure out the same thing. You can only have one Authorization header per request, so you can only send the Access or the Refresh token, not both....
Oh if you switch to using JWT cookies (https://indominusbyte.github.io/fastapi-jwt-auth/usage/jwt-in-cookies/) then it sends both the `access_token_cookie` and the `refresh_token_cookie` So I think this should work: ``` from fastapi import Cookie ......
I just now see theres other open PRs for the restore feature, I don't mean to step on anyones toes.
I'm not setting any thing weird myself, but since it's building inside a container, it does require root access to delete the folder. arch-ppa does the clean with sudo. Perhaps...
Interesting. Pretty sure arch-nspawn does btrfs volumes as part of its implementation, so there may have been some incompatibility with btrfs on top of btrfs.
Is there a reason for the nested if?, or were you just intending to modify the original args?
Yea, I think it was just laziness on my part to have it run in place. How about it creates a directory in $USER/.arch-ppa by default but could be changed...
Cool, thanks
It's the $\* bit on line 256.
It takes the exact command you typed in the cli and assumes the first word is the function name and the rest as arguments to that function.