Browse Source

fix: add RetryAfterMinutes property to operation rate limiting exception data

pull/25024/head
maliming 4 weeks ago
parent
commit
3f06580fc3
No known key found for this signature in database GPG Key ID: A646B9CB645ECEA4
  1. 1
      docs/en/framework/infrastructure/operation-rate-limiting.md

1
docs/en/framework/infrastructure/operation-rate-limiting.md

@ -283,6 +283,7 @@ The exception includes the following data properties:
| `CurrentCount` | int | Current usage count |
| `RemainingCount` | int | Remaining allowed count |
| `RetryAfterSeconds` | int | Seconds until the window resets |
| `RetryAfterMinutes` | int | Minutes until the window resets (rounded down) |
| `RetryAfter` | string | Localized retry-after description (e.g., "5 minutes") |
| `WindowDurationSeconds` | int | Total window duration in seconds |
| `WindowDescription` | string | Localized window description |

Loading…
Cancel
Save