Skip to content

Commit 1d9f445

Browse files
committed
Fix incorrect internal broken links
- fixes SharePoint#5285
1 parent d783d94 commit 1d9f445

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/solution-guidance/Handle-SharePoint-Online-throttling-by-using-exponential-back-off.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Handle SharePoint Online throttling by using exponential back off
3-
ms.date: 1/15/2020
3+
ms.date: 2/5/2020
44
localization_priority: Priority
55
---
66

@@ -13,13 +13,13 @@ _**Applies to:** Office 365 | SharePoint Online | SharePoint Server 2013_
1313
> [!NOTE]
1414
> This page references the **Core.Throttling** sample project from the SharePoint PnP group. While this project does demonstrate the exponential backoff strategy, you should make yourself aware of the `Retry-After` HTTP header that is also returned. This was added to the SharePoint REST API after the **Core.Throttling** project was created.
1515
>
16-
> You can learn more about this HTTP header in the following article: [How to: Avoid getting throttled or blocked in SharePoint Online](/general-development/how-to-avoid-getting-throttled-or-blocked-in-sharepoint-online.md)
16+
> You can learn more about this HTTP header in the following article: [How to: Avoid getting throttled or blocked in SharePoint Online](../general-development/how-to-avoid-getting-throttled-or-blocked-in-sharepoint-online.md)
1717
1818
SharePoint Online uses throttling to prevent users from over-consuming resources. When a user runs CSOM or REST code that exceeds usage limits, SharePoint Online throttles any further request from the user for a period of time.
1919

2020
The [Core.Throttling](https://github.com/SharePoint/PnP/tree/master/Samples/Core.Throttling) code sample in the [SharePoint Patterns and Practices](https://github.com/SharePoint/PnP) organization shows how to implement the exponential back off technique to handle throttling in SharePoint Online. When you get throttled in SharePoint Online, the exponential back off technique waits progressively longer periods of time before retrying the code that was throttled.
2121

22-
For more information about throttling in SharePoint Online (*for example, causes, limits, and so on), and an explanation of the Core.Throttling code sample, see [How to: Avoid getting throttled or blocked in SharePoint Online](/general-development/how-to-avoid-getting-throttled-or-blocked-in-sharepoint-online.md)*).
22+
For more information about throttling in SharePoint Online (*for example, causes, limits, and so on), and an explanation of the Core.Throttling code sample, see [How to: Avoid getting throttled or blocked in SharePoint Online](../general-development/how-to-avoid-getting-throttled-or-blocked-in-sharepoint-online.md)*).
2323

2424
Also, in the [ClientContextExtensions.cs](https://github.com/SharePoint/PnP/blob/dev/Samples/Core.Throttling/Core.Throttling/ClientContextExtensions.cs) sample, check out the `ExecuteQueryImplementation` extension method. `ExecuteQueryImplementation` is included in [OfficeDevPnP.Core](https://github.com/SharePoint/PnP-Sites-Core/tree/master/Core/OfficeDevPnP.Core).
2525

0 commit comments

Comments
 (0)