(from, to *controller.OperatorConfiguration)
| 181 | } |
| 182 | |
| 183 | func getMergedConfig(from, to *controller.OperatorConfiguration) *controller.OperatorConfiguration { |
| 184 | mergedConfig := to.DeepCopy() |
| 185 | fromCopy := from.DeepCopy() |
| 186 | mergeConfig(fromCopy, mergedConfig) |
| 187 | return mergedConfig |
| 188 | } |
| 189 | |
| 190 | func syncConfigFrom(newConfig *controller.DevWorkspaceOperatorConfig) { |
| 191 | if newConfig == nil || newConfig.Name != OperatorConfigName || newConfig.Namespace != configNamespace { |
no test coverage detected