Removed duplicate words (#583)

pull/585/head
Ron Petrusha 2017-12-12 09:15:18 -08:00 committed by GitHub
parent 22f5de4436
commit 1c8737a687
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@ In applications that target the .NET Framework 4.7.1 or a later version, backgro
### Recommended Action
For apps that target the .NET Framework 4.7.1, you can opt out of the exception handling if it is not desirable by adding the following to to the `<runtime>` section of your `app.config` file:
For apps that target the .NET Framework 4.7.1, you can opt out of the exception handling if it is not desirable by adding the following to the `<runtime>` section of your `app.config` file:
```xml
<runtime>
@ -29,7 +29,7 @@ For apps that target the .NET Framework 4.7.1, you can opt out of the exception
</runtime>
```
For apps that target earlier versions of the .NET Framework but run on the .NET Framework 4.7.1 or later, you can opt in to the exception handling by adding the following to to the `<runtime>` section of your `app.config` file:
For apps that target earlier versions of the .NET Framework but run on the .NET Framework 4.7.1 or later, you can opt in to the exception handling by adding the following to the `<runtime>` section of your `app.config` file:
```xml
<runtime>

View File

@ -35,7 +35,7 @@ exceeds 260 characters.
### Recommended Action
For apps that target the .NET Framework 4.6.2, you can opt out of long path
support if it is not desirable by adding the following to to the `<runtime>`
support if it is not desirable by adding the following to the `<runtime>`
section of your `app.config` file:
```xml
@ -46,7 +46,7 @@ section of your `app.config` file:
For apps that target earlier versions of the .NET Framework but run on the .NET
Framework 4.6.2 or later, you can opt in to long path support by adding the
following to to the `<runtime>` section of your `app.config` file:
following to the `<runtime>` section of your `app.config` file:
```xml
<runtime>

View File

@ -10,7 +10,7 @@ Edge
NotPlanned
### Change Description
In the .NET Framework 4.6.2 and earlier, ASP.NET executes requests with the same Sessionid sequentially, and ASP.NET always issues the Sessionid through cookie by default. If a page takes a long time to respond, it will significantly degrade server performance just by pressing F5 on the browser. In the fix, we added a counter to track the queued requests and terminate the requests when they exceed a specified limit. The default value is 50. If the the limit is reached, a warning will be logged in the event log, and an HTTP 500 response may be recorded in the IIS log.
In the .NET Framework 4.6.2 and earlier, ASP.NET executes requests with the same Sessionid sequentially, and ASP.NET always issues the Sessionid through cookies by default. If a page takes a long time to respond, it will significantly degrade server performance just by pressing F5 on the browser. In the fix, we added a counter to track the queued requests and terminate the requests when they exceed a specified limit. The default value is 50. If the limit is reached, a warning will be logged in the event log, and an HTTP 500 response may be recorded in the IIS log.
- [x] Quirked
- [ ] Build-time break