-
Notifications
You must be signed in to change notification settings - Fork 2.6k
fix(core): create all tables upfront when creating the database #33843
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
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
✅ Deploy Preview for nx-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
View your CI Pipeline Execution ↗ for commit cf7abf1
☁️ Nx Cloud last updated this comment at |
Create all the tables upfront when creating the database. This prevents some issues in some scenarios where a missing table is reported. (cherry picked from commit ed09ee1)
…33874) ## Current Behavior The `linkTaskDetails` parameter was removed from the `NxCache` constructor in #33843, which broke Nx Cloud since it still passes this parameter. ## Expected Behavior The `NxCache` constructor should accept the `linkTaskDetails` parameter (even if unused) to maintain backwards compatibility with Nx Cloud. ## Related Issue(s) Fixes ed09ee1#r172894152
Create all the tables upfront when creating the database. This prevents some issues in some scenarios where a missing table is reported.
Create all the tables upfront when creating the database. This prevents some issues in some scenarios where a missing table is reported. (cherry picked from commit ed09ee1)
…33874) ## Current Behavior The `linkTaskDetails` parameter was removed from the `NxCache` constructor in #33843, which broke Nx Cloud since it still passes this parameter. ## Expected Behavior The `NxCache` constructor should accept the `linkTaskDetails` parameter (even if unused) to maintain backwards compatibility with Nx Cloud. ## Related Issue(s) Fixes ed09ee1#r172894152 (cherry picked from commit 2be4dde)
|
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
Create all the tables upfront when creating the database. This prevents some issues in some scenarios where a missing table is reported.