You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/provider/main.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ import (
42
42
funcmain() {
43
43
var (
44
44
app=kingpin.New(filepath.Base(os.Args[0]), "SQL support for Crossplane.").DefaultEnvars()
45
-
debug=app.Flag("debug", "Run with debug logging.").Short('d').Bool()
45
+
debug=app.Flag("debug", "Run with debug logging.").Short('d').Envar("DEBUG").Bool()
46
46
pollInterval=app.Flag("poll", "Poll interval controls how often an individual resource should be checked for drift.").Default("10m").Duration()
47
47
syncPeriod=app.Flag("sync", "How often all resources will be double-checked for drift from the desired state.").Short('s').Default("1h").Duration()
48
48
leaderElection=app.Flag("leader-election", "Use leader election for the controller manager.").Short('l').Default("false").Envar("LEADER_ELECTION").Bool()
0 commit comments