From f004f826bfc5d8e87df2c37ff30fe17287114ffc Mon Sep 17 00:00:00 2001 From: Aditya <60684641+0x0elliot@users.noreply.github.com> Date: Sat, 14 Dec 2024 17:28:25 +0530 Subject: [PATCH] fix: disable memcache cleanup --- functions/onprem/orborus/orborus.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/functions/onprem/orborus/orborus.go b/functions/onprem/orborus/orborus.go index b6a6b45b..b99630ff 100755 --- a/functions/onprem/orborus/orborus.go +++ b/functions/onprem/orborus/orborus.go @@ -199,7 +199,9 @@ func skipCheckInCleanup(name string) bool { strings.HasPrefix(name, "orborus") || strings.HasPrefix(name, "shuffle-orborus") || strings.HasPrefix(name, "opensearch") || - strings.HasPrefix(name, "shuffle-opensearch") + strings.HasPrefix(name, "shuffle-opensearch") || + strings.HasPrefix(name, "memcached") || + strings.HasPrefix(name, "shuffle-memcached") } func cleanupExistingNodes(ctx context.Context) error {