cleanup: modifies the error caused due to merged PRs

This commit modifies the error of godot, cyclop,
paralleltest linter caused due to merged PRs.

Updates: #1586

Signed-off-by: Yati Padia <ypadia@redhat.com>
This commit is contained in:
Yati Padia
2021-07-22 11:58:10 +05:30
committed by mergify[bot]
parent 4e890e9daf
commit 1ae2afe208
7 changed files with 9 additions and 7 deletions

View File

@ -9,7 +9,7 @@ import (
)
const (
// defaultVaultBackendPath is the default VAULT_BACKEND_PATH for secrets
// defaultVaultBackendPath is the default VAULT_BACKEND_PATH for secrets.
defaultVaultBackendPath = "secret/"
)

View File

@ -1212,9 +1212,9 @@ func waitForJobCompletion(c kubernetes.Interface, ns, job string, timeout int) e
type kubectlAction string
const (
// kubectlCreate tells retryKubectlInput() to run "create"
// kubectlCreate tells retryKubectlInput() to run "create".
kubectlCreate = kubectlAction("create")
// kubectlDelete tells retryKubectlInput() to run "delete"
// kubectlDelete tells retryKubectlInput() to run "delete".
kubectlDelete = kubectlAction("delete")
)