-
Notifications
You must be signed in to change notification settings - Fork 56
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
SPMeta2.Exceptions.SPMeta2ModelDeploymentException : Field or property "vti_iplabelid" does not exist. #1130
Comments
Hi @Yash85 , thanks for raising this, it is very helpful. Feels that we might have changes on O365 side, new attributes or properties which might affect provision flow. Noted that with "Issue with provisioning Publishing PageLayouts" #1128 as well. We'll look into this, aiming for a solution later this week, max around 18/19th this months. Meanwhile, you can pin where the issue occurs by using callback on the provision progress
This one should help to identify the artifact, the model node where the issue happens. That might give more clue on what the resolution can be. Would you like to give it a go to pin the failure more specifically? provisionService.OnModelNodeProcessing += (sender, args) =>
{
Trace.WriteLine(
string.Format("Processing: [{0}/{1}] - [{2}%] - [{3}] [{4}]",
new object[] {
args.ProcessedModelNodeCount,
args.TotalModelNodeCount,
100d * (double)args.ProcessedModelNodeCount / (double)args.TotalModelNodeCount,
args.CurrentNode.Value.GetType().Name,
args.CurrentNode.Value
}));
};
provisionService.OnModelNodeProcessed += (sender, args) =>
{
Trace.WriteLine(
string.Format("Processed: [{0}/{1}] - [{2}%] - [{3}] [{4}]",
new object[] {
args.ProcessedModelNodeCount,
args.TotalModelNodeCount,
100d * (double)args.ProcessedModelNodeCount / (double)args.TotalModelNodeCount,
args.CurrentNode.Value.GetType().Name,
args.CurrentNode.Value
}));
}; Finally, as you said that the issue happens if several models get deployed, we'll see if we should add this scenario into regression testing. We do consequent deployment but the model is the same-same or with changed properties. Might be a weird combination of particular artifacts / properties coming together, that's a good question. |
Thanks a lot for your reply. ` _provisioningService.OnModelNodeProcessing += (sender, args) =>
` Sites to deploy : Result : Here is the trace I got from first 3 attempts. Hope this will be helpful for you to understand the issue. Attempt 1Begin Provisioning to https://demo.sharepoint.com/sites/prep-DEMOSITE-intranet Inner Exception: {"Field or property "vti_iplabelid" does not exist."}Stack trace: at Microsoft.SharePoint.Client.ClientRequest.ProcessResponseStream(Stream responseStream)
|
Hi,
I'm trying to deploy SharePoint online intranet solution which used SPMeta2. There are more than 15 sub sites within the site collection. Therefore the deployment is split in to few modules according to the sub sites.
But the deployment getting fail time to time with following error. Can someone help me on this?
--
Process completed with exit code -532462766 and had 1 error(s) written to the error stream.
Some times this deploy without any error. and some times randomly break it in sub site.
SharePoint API
Which version of SharePoint runtime do you use?
SPMeta2 API
SPMeta2 versions :
Microsoft.SharePointOnline.CSOM.16.1.6518.1200
SPMeta2.Core.1.2.130
SPMeta2.Core.Standard.1.2.130
SPMeta2.CSOM.Foundation-v16.1.2.130
SPMeta2.CSOM.Standard-v16.1.2.130
The text was updated successfully, but these errors were encountered: