From e4faadc9b54bb47e837cc0f30d49a15bf306901d Mon Sep 17 00:00:00 2001 From: Luke Date: Wed, 13 Mar 2024 17:25:01 +0900 Subject: [PATCH] chore: increase aws qps frequency --- pkg/cache/cache.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cache/cache.go b/pkg/cache/cache.go index 7f0ba1d97510..b138e31be640 100644 --- a/pkg/cache/cache.go +++ b/pkg/cache/cache.go @@ -23,7 +23,7 @@ const ( // resources. Cache hits enable faster provisioning and reduced API load on // AWS APIs, which can have a serious impact on performance and scalability. // DO NOT CHANGE THIS VALUE WITHOUT DUE CONSIDERATION - DefaultTTL = time.Minute + DefaultTTL = 5 * time.Minute // UnavailableOfferingsTTL is the time before offerings that were marked as unavailable // are removed from the cache and are available for launch again UnavailableOfferingsTTL = 3 * time.Minute