From 340c49bf12ad469db7867bc5139406a50fe53368 Mon Sep 17 00:00:00 2001 From: DevITWay Date: Mon, 26 Jan 2026 10:14:11 +0000 Subject: [PATCH] Fix formatting --- nora-registry/src/rate_limit.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nora-registry/src/rate_limit.rs b/nora-registry/src/rate_limit.rs index ff6f629..12fe21e 100644 --- a/nora-registry/src/rate_limit.rs +++ b/nora-registry/src/rate_limit.rs @@ -28,12 +28,12 @@ pub struct RateLimitConfig { impl Default for RateLimitConfig { fn default() -> Self { Self { - auth_rps: 1, // 1 req/sec for auth (strict) - auth_burst: 5, // Allow burst of 5 - upload_rps: 50, // 50 req/sec for uploads (Docker needs parallel) - upload_burst: 100, // Allow burst of 100 - general_rps: 100, // 100 req/sec general - general_burst: 200, // Allow burst of 200 + auth_rps: 1, // 1 req/sec for auth (strict) + auth_burst: 5, // Allow burst of 5 + upload_rps: 50, // 50 req/sec for uploads (Docker needs parallel) + upload_burst: 100, // Allow burst of 100 + general_rps: 100, // 100 req/sec general + general_burst: 200, // Allow burst of 200 } } }