-
Notifications
You must be signed in to change notification settings - Fork 120
chore: move changes from ee #2956
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.
|
Claude encountered an error —— View job I'll analyze this and get back to you. |
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
How to use the Graphite Merge QueueAdd the label merge-queue to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
commit: |
e95b024
to
bbdf1c1
Compare
bd728b2
to
588f20d
Compare
Claude encountered an error —— View job I'll analyze this and get back to you. |
Claude encountered an error —— View job I'll analyze this and get back to you. |
588f20d
to
45667b4
Compare
Claude encountered an error —— View job I'll analyze this and get back to you. |
self.informal() | ||
.clear_subspace_range(&self.subspace.join(&subspace)); |
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.
There appears to be a type mismatch between the parameter types in this PR. The new delete_subspace
method is using Subspace
from the utils module, but the clear_subspace_range
method on line 240 has been modified to accept tuple::Subspace
instead of Subspace
.
This creates an inconsistency where self.subspace.join(&subspace)
returns a Subspace
type, but clear_subspace_range
now expects a tuple::Subspace
.
To resolve this, either:
- Change
clear_subspace_range
to continue acceptingSubspace
type, or - Modify the
delete_subspace
implementation to convert totuple::Subspace
before passing it
Maintaining type consistency will prevent potential runtime errors.
self.informal() | |
.clear_subspace_range(&self.subspace.join(&subspace)); | |
self.informal() | |
.clear_subspace_range(&tuple::Subspace::from(self.subspace.join(&subspace))); |
Spotted by Diamond
Is this helpful? React 👍 or 👎 to let us know.
Merge activity
|
No description provided.