From ed23a4b1c9e5bc3349df1e6c710a8b625a1d042a Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Sat, 20 Jan 2024 20:47:40 +0200 Subject: [PATCH] Added missing retry --- src/Commands/Admin/GetContainerTypeConfiguration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/Admin/GetContainerTypeConfiguration.cs b/src/Commands/Admin/GetContainerTypeConfiguration.cs index 679196cfd..8f10df1e3 100644 --- a/src/Commands/Admin/GetContainerTypeConfiguration.cs +++ b/src/Commands/Admin/GetContainerTypeConfiguration.cs @@ -19,7 +19,7 @@ protected override void ExecuteCmdlet() throw new ArgumentException($"Identity {Identity} value is invalid"); } ClientResult sPOContainerTypeConfigurationByContainerTypeId = Tenant.GetSPOContainerTypeConfigurationByContainerTypeId(Identity); - AdminContext.ExecuteQuery(); + AdminContext.ExecuteQueryRetry(); if (sPOContainerTypeConfigurationByContainerTypeId != null && sPOContainerTypeConfigurationByContainerTypeId.Value != null) { WriteObject(new Model.SharePoint.SPContainerTypeConfigurationPropertiesObj(sPOContainerTypeConfigurationByContainerTypeId.Value));