@azumag/opencode-rate-limit-fallback 1.58.0 → 1.59.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -114,7 +114,7 @@ export class ErrorPatternRegistry {
|
|
|
114
114
|
// Common rate limit patterns (provider-agnostic)
|
|
115
115
|
this.register({
|
|
116
116
|
name: 'http-429',
|
|
117
|
-
patterns: [
|
|
117
|
+
patterns: [/\b429\b/gi], // HTTP 429 status code with word boundaries
|
|
118
118
|
priority: 100,
|
|
119
119
|
});
|
|
120
120
|
this.register({
|
package/package.json
CHANGED