mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-04 02:37:46 +02:00
fix(core): Raise rate limit on telemetry /identify endpoint (#31509)
Co-authored-by: n8n-cat-bot[bot] <n8n-cat-bot[bot]@users.noreply.github.com> Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
39cb53609e
commit
e8cbcf0b08
|
|
@ -30,7 +30,10 @@ export class TelemetryController {
|
|||
await this.proxy(req, res, next);
|
||||
}
|
||||
|
||||
@Post('/proxy/:version/identify', { skipAuth: true, ipRateLimit: true })
|
||||
@Post('/proxy/:version/identify', {
|
||||
skipAuth: true,
|
||||
ipRateLimit: { limit: 100, windowMs: 60_000 },
|
||||
})
|
||||
async identify(req: AuthenticatedRequest, res: Response, next: NextFunction) {
|
||||
await this.proxy(req, res, next);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user