Skip to content

Commit

Permalink
Added missing retry
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamdsheth authored Jan 20, 2024
1 parent e746cc5 commit ed23a4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/Admin/GetContainerTypeConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ protected override void ExecuteCmdlet()
throw new ArgumentException($"Identity {Identity} value is invalid");
}
ClientResult<SPContainerTypeConfigurationProperties> sPOContainerTypeConfigurationByContainerTypeId = Tenant.GetSPOContainerTypeConfigurationByContainerTypeId(Identity);
AdminContext.ExecuteQuery();
AdminContext.ExecuteQueryRetry();
if (sPOContainerTypeConfigurationByContainerTypeId != null && sPOContainerTypeConfigurationByContainerTypeId.Value != null)
{
WriteObject(new Model.SharePoint.SPContainerTypeConfigurationPropertiesObj(sPOContainerTypeConfigurationByContainerTypeId.Value));
Expand Down

0 comments on commit ed23a4b

Please sign in to comment.