Daniel Porteous (dport)
Daniel Porteous (dport)
Oh I see that the swagger code there is all auto generated, so just changing it manually is no good. I'll see if I can fix up the generator part...
Currently it just does this: ``` $ git co error: The subcommand 'checkout' wasn't recognized Usage: git-branchless [OPTIONS] For more information try '--help' ``` I don't think I have any...
@arxanas I ran this command: ``` git config --global alias.co 'branchless switch' ``` Which left me with a `~/gitconfig` that looks like this: https://gist.github.com/banool/65d9c277659a8059705c1cbea6392a61. However, when I run `git co...
Ah bingo there it is, I see this line: ``` [alias] co = branchless checkout ``` Whereas in a new repo it's not there. Perhaps `git branchless init` should clean...
From my research I feel like making the upstream code return Services that impl Sync is not correct, the changes should be made in the Poem layer. As it is...
I can see a possible solution in the Tonic side too: https://github.com/hyperium/tonic/issues/1322.
Of course if we had https://github.com/poem-web/poem/issues/535, this could be solved the other way around, where instead of Poem at the top, we have something else like Axum or Tower directly,...
For context, this problem makes it that the only solution is to run two separate web servers and then have a reverse proxy (on the same machine) in front of...
I think this is the solution to https://github.com/poem-web/poem/issues/536 btw.
I figure one option that could work out of the box is using axum + the tower extension support in Poem, though that feels pretty hacky.