Revert "Throttle CRF to two concurrent deploys"#10177
Revert "Throttle CRF to two concurrent deploys"#10177asperpharma wants to merge 2 commits intofirebase:mainfrom
Conversation
This reverts commit 0999f31.
|
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request reverts a prior change that temporarily restricted concurrent Cloud Run Function deployments. By eliminating the specialized Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request refactors the Fabricator class by removing the dedicated runFunctionExecutor and consolidating its responsibilities into the general executor. This change simplifies the FabricatorArgs interface, the class properties, and the usage of executors for Cloud Run function operations (create, update, delete). A review comment points out that this change might inadvertently reduce the concurrency for deleting Cloud Run functions in the firebase functions:delete command, potentially slowing down bulk deletions. It is recommended to ensure the executor in src/commands/functions-delete.ts is initialized with the same concurrency options as the functionExecutor to maintain consistent behavior.
|
Did it break something? |
|
This is a modification to an unreleased feature. Unless there's an actual bug to report, we are closing the PR. |
Reverts #10173