Replies: 1 comment 1 reply
-
How to implement EventHub (retryEvent) in PnP Core SDK? any sample code? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We are getting "A Task was canceled" Error while connecting SharePoint online using PnP Core SDK in windows console application (C#), we have updated the below configuration in appsettings.json file. But still we are getting the error. Could you please suggest how to handle this issue with example.
"PnPCore": {
"DisableTelemetry": "false",
"HttpRequests": {
"UserAgent": "ISV|Company|ProductX",
"Timeout": "100",
"RateLimiterMinimumCapacityLeft": "20",
"SharePointRest": {
"UseRetryAfterHeader": "true",
"MaxRetries": "10",
"DelayInSeconds": "10",
"UseIncrementalDelay": "true"
},
"MicrosoftGraph": {
"UseRetryAfterHeader": "true",
"MaxRetries": "10",
"DelayInSeconds": "10",
"UseIncrementalDelay": "true"
}
},
Beta Was this translation helpful? Give feedback.
All reactions