-
Notifications
You must be signed in to change notification settings - Fork 1
fix(infra): remove statefull type from nodepool entity #285
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,7 +18,6 @@ type NodePool struct { | |
| ClusterName string `json:"clusterName" graphql:"noinput"` | ||
|
|
||
| SyncStatus t.SyncStatus `json:"syncStatus" graphql:"noinput"` | ||
| IsStateful bool `json:"stateful"` | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. suggestion (llm): With the |
||
| } | ||
|
|
||
| func (n *NodePool) GetDisplayName() string { | ||
|
|
||
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.
suggestion (llm): Given the removal of the
IsStatefulproperty from the NodePool entity, it's crucial to ensure that any logic previously dependent on this property is appropriately adjusted or removed. This includes any tests that might have been checking the behavior or state changes based on theIsStatefulproperty. Please verify if there are existing tests covering this logic and update or remove them as necessary to reflect the current state of the codebase.