diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2022-03-23 10:49:44 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-23 10:49:44 -0700 |
| commit | b8837cb5faa4a01cc3bff1943cf9638b848b78cc (patch) | |
| tree | b9aec1f756a5b6bb818e7cf0cf05137e92a79061 /weed/command | |
| parent | e48764be75d285fe7edfbd88ca7ff419580c48d1 (diff) | |
| parent | 849a2c1f684840eb7d7dd4c341b4d6f821ba90c8 (diff) | |
| download | seaweedfs-b8837cb5faa4a01cc3bff1943cf9638b848b78cc.tar.xz seaweedfs-b8837cb5faa4a01cc3bff1943cf9638b848b78cc.zip | |
Merge pull request #2794 from kmlebedev/filer_set_iam_ip
Diffstat (limited to 'weed/command')
| -rw-r--r-- | weed/command/filer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/filer.go b/weed/command/filer.go index 96150deb3..4f8fd947a 100644 --- a/weed/command/filer.go +++ b/weed/command/filer.go @@ -103,7 +103,7 @@ func init() { // start iam on filer filerStartIam = cmdFiler.Flag.Bool("iam", false, "whether to start IAM service") - filerIamOptions.ip = f.ip + filerIamOptions.ip = cmdFiler.Flag.String("iam.ip", *f.ip, "iam server http listen ip address") filerIamOptions.port = cmdFiler.Flag.Int("iam.port", 8111, "iam server http listen port") } |
