From 4d14568852a940fcdf7d359e72712e43c21585fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Sun, 19 Jul 2026 13:11:46 +0400 Subject: [PATCH] fix: non-constant format string in fmt.Errorf --- TEST_STAND/LUCEE/main.tf | 2 +- TOOLS/config/dev/profile.env | 2 +- TOOLS/config/prod/profile.env | 2 +- TOOLS/config/test/profile.env | 2 +- provider/internal/core/instance_outputs.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/TEST_STAND/LUCEE/main.tf b/TEST_STAND/LUCEE/main.tf index 443353a..d6d6b24 100644 --- a/TEST_STAND/LUCEE/main.tf +++ b/TEST_STAND/LUCEE/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { nubes = { source = "registry.kube5s.ru/nubes-test/nubes" - version = "5.1.9" + version = "5.1.10" } } } diff --git a/TOOLS/config/dev/profile.env b/TOOLS/config/dev/profile.env index 96c715f..74e52b5 100644 --- a/TOOLS/config/dev/profile.env +++ b/TOOLS/config/dev/profile.env @@ -4,7 +4,7 @@ TOKEN_FILE="secrets/dev.token" # Release versions # Version -VERSION="3.1.8" +VERSION="3.1.9" # Registry/S3 settings REGISTRY_HOST="registry.kube5s.ru" diff --git a/TOOLS/config/prod/profile.env b/TOOLS/config/prod/profile.env index b973632..ca3bc09 100644 --- a/TOOLS/config/prod/profile.env +++ b/TOOLS/config/prod/profile.env @@ -4,7 +4,7 @@ TOKEN_FILE="secrets/prod.token" # Release versions # Version -VERSION="2.1.7" +VERSION="2.1.8" # Registry/S3 settings REGISTRY_HOST="registry.kube5s.ru" diff --git a/TOOLS/config/test/profile.env b/TOOLS/config/test/profile.env index e2a8883..6b4ca83 100644 --- a/TOOLS/config/test/profile.env +++ b/TOOLS/config/test/profile.env @@ -3,7 +3,7 @@ NUBES_API_ENDPOINT="https://lk-api-gateway-test.ngcloud.ru/api/v1/svc" TOKEN_FILE="secrets/test.token" # Version -VERSION="5.1.10" +VERSION="5.1.11" # Docs generation — ONLY from docs_gen// (never from docs/) DOCS_GEN_DIR="provider/docs_gen/test" diff --git a/provider/internal/core/instance_outputs.go b/provider/internal/core/instance_outputs.go index 8bfbeb8..ee4057b 100644 --- a/provider/internal/core/instance_outputs.go +++ b/provider/internal/core/instance_outputs.go @@ -85,7 +85,7 @@ func (c *UniversalClient) GetInstanceVaultSecrets(ctx context.Context, instanceU } if len(errs) > 0 { - return secrets, fmt.Errorf(strings.Join(errs, "; ")) + return secrets, fmt.Errorf("%s", strings.Join(errs, "; ")) } return secrets, nil }