-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Fix api url lookups #4714
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix api url lookups #4714
Conversation
This commit fixes a bug in the ApiUrlsLookup generator to use the endpoint filename when comparing against the list of high level APIs to ignore.
This commit fixes a bug in the CSharp method name generation where Index is removed from the name of the SimulateIndexTemplate method in the Indices namespace. Removing this causes a collision with SimulateTemplate
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-7.7 7.7
# Navigate to the new working tree
cd .worktrees/backport-7.7
# Create a new branch
git switch --create backport-4714-to-7.7
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick d36aabbd999ce0029d530c368839217fc939d0d7
# Push it to GitHub
git push --set-upstream origin backport-4714-to-7.7
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-7.7 Then, create a pull request where the |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-master master
# Navigate to the new working tree
cd .worktrees/backport-master
# Create a new branch
git switch --create backport-4714-to-master
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick d36aabbd999ce0029d530c368839217fc939d0d7
# Push it to GitHub
git push --set-upstream origin backport-4714-to-master
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-master Then, create a pull request where the |
* Exclude lookups for ignored high level APIs This commit fixes a bug in the ApiUrlsLookup generator to use the endpoint filename when comparing against the list of high level APIs to ignore. * Do not remove Index from SimulateIndexTemplate method name This commit fixes a bug in the CSharp method name generation where Index is removed from the name of the SimulateIndexTemplate method in the Indices namespace. Removing this causes a collision with SimulateTemplate (cherry picked from commit d36aabb)
* Exclude lookups for ignored high level APIs This commit fixes a bug in the ApiUrlsLookup generator to use the endpoint filename when comparing against the list of high level APIs to ignore. * Do not remove Index from SimulateIndexTemplate method name This commit fixes a bug in the CSharp method name generation where Index is removed from the name of the SimulateIndexTemplate method in the Indices namespace. Removing this causes a collision with SimulateTemplate (cherry picked from commit d36aabb)
This PR fixes a couple of bugs in the ApiUrlsLookup generator:
of high level APIs to ignore.
where Index is removed from the name of the SimulateIndexTemplate
method in the Indices namespace. Removing this causes a collision
with SimulateTemplate