Skip to content

Commit

Permalink
Merge pull request #9143 from olivierbouffet/fixobjectstore
Browse files Browse the repository at this point in the history
object: fix search user in objectstore
  • Loading branch information
travisn committed Nov 24, 2021
2 parents 10e6878 + e06c6fc commit ec6f55e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/operator/ceph/object/objectstore.go
Expand Up @@ -477,7 +477,7 @@ func createSystemUser(objContext *Context, namespace string) error {
zoneGroupArg := fmt.Sprintf("--rgw-zonegroup=%s", objContext.ZoneGroup)
zoneArg := fmt.Sprintf("--rgw-zone=%s", objContext.Zone)

output, err := RunAdminCommandNoMultisite(objContext, false, "user", "info", uidArg)
output, err := RunAdminCommandNoMultisite(objContext, false, "user", "info", uidArg, realmArg, zoneGroupArg, zoneArg)
if err == nil {
logger.Debugf("realm system user %q has already been created", uid)
return nil
Expand Down

0 comments on commit ec6f55e

Please sign in to comment.