Skip to content

Commit

Permalink
Fixed wrong ConfigureAwait usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-KaiNet committed Apr 15, 2022
1 parent c94aa95 commit 8f02798
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/sdk/PnP.Core/Model/Base/DataModelExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ internal static async Task EnsureParentObjectAsync(this IDataModelParent model)
await gettableParent.LoadBatchAsync(ensureParentBatch, expressions).ConfigureAwait(false);

// Make the actual request
await contextAwareParent.PnPContext.BatchClient.ExecuteBatch(ensureParentBatch).ConfigureAwait(true);
await contextAwareParent.PnPContext.BatchClient.ExecuteBatch(ensureParentBatch).ConfigureAwait(false);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/sdk/PnP.Core/Model/SharePoint/Pages/Internal/Page.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1942,7 +1942,7 @@ private async Task ValidateOneColumnFullWidthSectionUsageAsync()
}
if (hasOneColumnFullWidthSection)
{
await PnPContext.Web.EnsurePropertiesAsync(p => p.WebTemplate).ConfigureAwait(true);
await PnPContext.Web.EnsurePropertiesAsync(p => p.WebTemplate).ConfigureAwait(false);
if (!PnPContext.Web.WebTemplate.Equals("SITEPAGEPUBLISHING", StringComparison.InvariantCultureIgnoreCase) &&
// we allow enabling communication site features on STS and EHS sites, so don't block adding full width sections on those sites
!PnPContext.Web.WebTemplate.Equals("STS", StringComparison.InvariantCultureIgnoreCase) &&
Expand Down
4 changes: 2 additions & 2 deletions src/sdk/PnP.Core/Services/Core/Query/TokenHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static async Task<string> ResolveTokensAsync(IMetadataExtensible pnpObjec
// Ensure the parent object
if (parent != null)
{
await ((IDataModelParent)pnpObject).EnsureParentObjectAsync().ConfigureAwait(true);
await ((IDataModelParent)pnpObject).EnsureParentObjectAsync().ConfigureAwait(false);
}

if (parent is IMetadataExtensible p)
Expand Down Expand Up @@ -94,7 +94,7 @@ public static async Task<string> ResolveTokensAsync(IMetadataExtensible pnpObjec
// Ensure the parent object
if (parent != null)
{
await ((IDataModelParent)pnpObject).EnsureParentObjectAsync().ConfigureAwait(true);
await ((IDataModelParent)pnpObject).EnsureParentObjectAsync().ConfigureAwait(false);
}

if (parent is IMetadataExtensible p)
Expand Down

0 comments on commit 8f02798

Please sign in to comment.