Skip to content

Commit

Permalink
chore: remove useless lines from argocd_repo_server.go (argoproj#14154)
Browse files Browse the repository at this point in the history
Signed-off-by: hongzhou.chen <[email protected]>
  • Loading branch information
chanhz authored and xiaowu.zhu committed Aug 9, 2023
1 parent 70b8126 commit 71ad41f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions cmd/argocd-repo-server/commands/argocd_repo_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import (
"math"
"net"
"net/http"
"os"
"time"

"github.com/argoproj/pkg/stats"
Expand Down Expand Up @@ -199,9 +198,6 @@ func NewCommand() *cobra.Command {
return nil
},
}
if cmdutil.LogFormat == "" {
cmdutil.LogFormat = os.Getenv("ARGOCD_REPO_SERVER_LOGLEVEL")
}
command.Flags().StringVar(&cmdutil.LogFormat, "logformat", env.StringFromEnv("ARGOCD_REPO_SERVER_LOGFORMAT", "text"), "Set the logging format. One of: text|json")
command.Flags().StringVar(&cmdutil.LogLevel, "loglevel", env.StringFromEnv("ARGOCD_REPO_SERVER_LOGLEVEL", "info"), "Set the logging level. One of: debug|info|warn|error")
command.Flags().Int64Var(&parallelismLimit, "parallelismlimit", int64(env.ParseNumFromEnv("ARGOCD_REPO_SERVER_PARALLELISM_LIMIT", 0, 0, math.MaxInt32)), "Limit on number of concurrent manifests generate requests. Any value less the 1 means no limit.")
Expand Down

0 comments on commit 71ad41f

Please sign in to comment.