Browse Source

Merge pull request #1851 from bingoohuang/master

fix bug to use env with prefix WEED_ in configuration files which simply the boringly long command line arguments
pull/1862/head
Chris Lu 4 years ago
committed by GitHub
parent
commit
b67b22f119
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      weed/util/fla9/fla9.go

1
weed/util/fla9/fla9.go

@ -995,6 +995,7 @@ func NewFlagSet(name string, errorHandling ErrorHandling) *FlagSet {
f := &FlagSet{
name: name,
errorHandling: errorHandling,
envPrefix: EnvPrefix,
}
return f
}

Loading…
Cancel
Save