Skip to content

Commit

Permalink
Merge pull request #9137 from travisn/raise-rgw-error
Browse files Browse the repository at this point in the history
rgw: Raise errors when rgw daemon fails to be created
  • Loading branch information
travisn committed Nov 10, 2021
2 parents f07c944 + 9ecd0cb commit 901263f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/operator/ceph/object/rgw.go
Expand Up @@ -140,7 +140,7 @@ func (c *clusterConfig) startRGWPods(realmName, zoneGroupName, zoneName string)
// Create deployment
deployment, err := c.createDeployment(rgwConfig)
if err != nil {
return nil
return errors.Wrap(err, "failed to create rgw deployment")
}
logger.Infof("object store %q deployment %q created", c.store.Name, deployment.Name)

Expand Down

0 comments on commit 901263f

Please sign in to comment.