Skip to content

Commit

Permalink
Add SqlServer transient error 10936 (#20970)
Browse files Browse the repository at this point in the history
Resolves #20923
  • Loading branch information
smitpatel authored May 15, 2020
1 parent c15f5ea commit a094aba
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ public static bool ShouldRetryOn([NotNull] Exception ex)
// SQL Error Code: 40197
// The service has encountered an error processing your request. Please try again.
case 40197:
// SQL Error Code: 10936
// Resource ID : %d. The request limit for the elastic pool is %d and has been reached.
// See 'http://go.microsoft.com/fwlink/?LinkId=267637' for assistance.
case 10936:
// SQL Error Code: 10929
// Resource ID: %d. The %s minimum guarantee is %d, maximum limit is %d and the current usage for the database is %d.
// However, the server is currently too busy to support requests greater than %d for this database.
Expand Down

0 comments on commit a094aba

Please sign in to comment.