You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As noted in #994 (comment), we are currently passing a long list of boolean flags to many workflow stages and their dependent reconciliation tasks. This approach makes the order of the boolean flags critical, which negatively impacts maintainability and may lead to potential issues if the order of the flags changes in the future.
We should consider refactoring or enhancing this implementation by exploring options such as:
Using a list of options
Passing a map
Separating the dependency flags into their own struct
The text was updated successfully, but these errors were encountered:
Description
As noted in #994 (comment), we are currently passing a long list of boolean flags to many workflow stages and their dependent reconciliation tasks. This approach makes the order of the boolean flags critical, which negatively impacts maintainability and may lead to potential issues if the order of the flags changes in the future.
We should consider refactoring or enhancing this implementation by exploring options such as:
The text was updated successfully, but these errors were encountered: