From 965c74abaff5a22bb165735fc19b9525ab1670c5 Mon Sep 17 00:00:00 2001 From: AzenKain Date: Mon, 18 May 2026 20:14:29 +0700 Subject: [PATCH] fix(goong): bump proxy cache version prefix to goong_proxy_v2 to clear dirty cache --- internal/services/goongService.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/services/goongService.go b/internal/services/goongService.go index c0900d4..1590e5c 100644 --- a/internal/services/goongService.go +++ b/internal/services/goongService.go @@ -59,7 +59,7 @@ func (s *goongService) ProxyRequest(ctx context.Context, method string, targetUR parsedUrl.RawQuery = q.Encode() finalURL := parsedUrl.String() - cacheKey := fmt.Sprintf("goong_proxy:%s", finalURL) + cacheKey := fmt.Sprintf("goong_proxy_v2:%s", finalURL) if method == http.MethodGet { var entry CacheEntry