fix: non-constant format string in fmt.Errorf
This commit is contained in:
@@ -2,7 +2,7 @@ terraform {
|
||||
required_providers {
|
||||
nubes = {
|
||||
source = "registry.kube5s.ru/nubes-test/nubes"
|
||||
version = "5.1.9"
|
||||
version = "5.1.10"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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/<stand>/ (never from docs/)
|
||||
DOCS_GEN_DIR="provider/docs_gen/test"
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user