Skip to content

Commit

Permalink
fix: start etcd if not using memory as storage for Metasrv
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelScofield committed Jul 8, 2024
1 parent 3d16cf7 commit 9af61b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cluster/baremetal/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func (c *Cluster) Create(ctx context.Context, options *opt.CreateOptions) error
return nil
}

if c.useMemoryMeta {
if !c.useMemoryMeta {
if err := withSpinner("Etcd Cluster", c.createEtcdCluster); err != nil {
return err
}
Expand Down

0 comments on commit 9af61b9

Please sign in to comment.