Merge pull request #36 from unistack-org/double_init

add check for already defined flag
This commit is contained in:
Василий Толстов 2022-03-25 14:10:20 +03:00 committed by GitHub
commit 19bf7ef965
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -60,7 +60,9 @@ func (c *flagConfig) Init(opts ...config.Option) error {
if vi == nil {
continue
}
if f := flag.Lookup(fn); f != nil {
return nil
}
switch vi.(type) {
case time.Duration:
err = c.flagDuration(sf.Value, fn, fv, fd)

View File

@ -43,6 +43,11 @@ func TestLoad(t *testing.T) {
t.Fatalf("init failed: %v", err)
}
// double init test
if err := c.Init(); err != nil {
t.Fatalf("init failed: %v", err)
}
if err := c.Load(ctx); err != nil {
t.Fatalf("load failed: %v", err)
}