We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I was checking why our customMetadata component was not deployed using delta-push but everything was fine using push.
delta-push
push
After test with the property sf.dumpFiles = true I found that the package.xml generated for delta-push contains null name in two components:
sf.dumpFiles = true
In this case the name should be customMetadata:
<types> <members>ARC_GlobalUIConfig.CalendarPage</members> <members>ARC_GlobalUIConfig.CarouselInterval</members> <members>ARC_GlobalUIConfig.CataloguePage</members> <members>ARC_GlobalUIConfig.HeaderSelectRootCategory</members> <members>ARC_GlobalUIConfig.HelpPage</members> <members>ARC_GlobalUIConfig.HomePage</members> <members>ARC_GlobalUIConfig.MyAccountPage</members> <members>ARC_GlobalUIConfig.MyPackagesPage</members> <members>ARC_GlobalUIConfig.PackagesPage</members> <members>ARC_GlobalUIConfig.ProductAvailabilityThresholdGreen</members> <members>ARC_GlobalUIConfig.ProductAvailabilityThresholdOrange</members> <members>ARC_GlobalUIConfig.RootCategory</members> <members>ARC_GlobalUIConfig.SelectBrandPage</members> <members>ARC_GlobalUIConfig.ServicesPage</members> <members>ARC_GlobalUIConfig.WishlistPage</members> <name>null</name> </types>
In this case the name should be Flow:
<types> <members>CREATE_ETAILING_COMMUNITY_USER</members> <name>null</name> </types>
On the other hand the package.xml generated in push command is fine and the data is deployed.
<types> <members>*</members> <name>CustomMetadata</name> </types>
<types> <members>*</members> <name>Flow</name> </types>
Do you know what is happening?? The issue is only with customMetada and Flow
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was checking why our customMetadata component was not deployed using
delta-push
but everything was fine usingpush
.After test with the property
sf.dumpFiles = true
I found that the package.xml generated fordelta-push
contains null name in two components:In this case the name should be customMetadata:
In this case the name should be Flow:
On the other hand the package.xml generated in push command is fine and the data is deployed.
Do you know what is happening?? The issue is only with customMetada and Flow
Thanks!
The text was updated successfully, but these errors were encountered: