-
Notifications
You must be signed in to change notification settings - Fork 5
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
Feature/config ordering #90
Conversation
@bomoko @CGoodwin90 could you take a look at this one when you get the chance, thanks! |
cmd/sync.go
Outdated
@@ -170,6 +183,137 @@ func syncCommandRun(cmd *cobra.Command, args []string) { | |||
} | |||
} | |||
|
|||
func createDefaultSyncherConfigRoot(syncerType string) synchers.SyncherConfigRoot { |
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.
I wanted to ask - this seems to duplicate, at least to some degree, the stuff we were doing in the "setDefaults" methods - why do we need to introduce this?
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.
Great spot - removed from here and keeping in defaults in synchers
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.
Seems this may have been added before since the setDefault was missing for mariabDb - added in here 3b1e3cc#diff-e878532b16029079651ee820572fb5de1dd16c3b02ba0a877c8c26403bac48e7R71-R72
…itional to only update if extra config is found
No description provided.