We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 365bc66 commit 07571f9Copy full SHA for 07571f9
cmd/app/options.go
@@ -74,9 +74,9 @@ type Options struct {
74
selfhosted selfhosted.Options
75
76
CacheTimeout time.Duration
77
- RequeueDuration time.Duration
78
GracefulShutdownTimeout time.Duration
79
CacheSyncPeriod time.Duration
+ RequeueDuration time.Duration
80
81
DefaultTestAll bool
82
}
@@ -446,9 +446,11 @@ func (o *Options) assignSelfhosted(envs []string) {
446
447
448
449
+ // If we have some selfhosted flags, lets set them here...
450
if len(o.selfhosted.Host) > 0 {
451
o.Client.Selfhosted[o.selfhosted.Host] = &o.selfhosted
452
453
+
454
if !validSelfHostedOpts(o) {
455
panic(fmt.Errorf("invalid self hosted configuration"))
456
0 commit comments