Merge pull request #7602 from alingse/fix-append-all-when-range-it

Fix: append all slice data when range for it
This commit is contained in:
lyndon-li
2024-04-01 14:07:13 +08:00
committed by GitHub
+1 -1
View File
@@ -170,7 +170,7 @@ func getPluginsByVersion(version, cloudProvider, objectStoreProvider, feature st
}
for _, p := range pluginsForDatamover {
if !slices.Contains(plugins, p) {
plugins = append(plugins, pluginsForDatamover...)
plugins = append(plugins, p)
}
}
}