Skip to content

Commit

Permalink
fix linter errors
Browse files Browse the repository at this point in the history
Signed-off-by: John Pitman <[email protected]>
  • Loading branch information
jopit committed Dec 6, 2024
1 parent 6a94095 commit 145a450
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions controllers/argocd/secret.go
Original file line number Diff line number Diff line change
Expand Up @@ -361,9 +361,9 @@ func (r *ReconcileArgoCD) reconcileExistingArgoSecret(cr *argoproj.ArgoCD, secre
if actual != expected {
secret.Data[common.ArgoCDDexSecretKey] = []byte(*dexOIDCClientSecret)
if changed {
expected += ", "
explanation += ", "
}
expected += "argo dex secret"
explanation += "argo dex secret"
changed = true
}
}
Expand Down
3 changes: 2 additions & 1 deletion controllers/argoutil/resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ import (
"k8s.io/apimachinery/pkg/types"
"sigs.k8s.io/controller-runtime/pkg/client"

"github.com/go-logr/logr"

argoprojv1alpha1 "github.com/argoproj-labs/argocd-operator/api/v1alpha1"
argoproj "github.com/argoproj-labs/argocd-operator/api/v1beta1"
"github.com/argoproj-labs/argocd-operator/common"
"github.com/go-logr/logr"
)

// AppendStringMap will append the map `add` to the given map `src` and return the result.
Expand Down

0 comments on commit 145a450

Please sign in to comment.