Skip to content

Commit

Permalink
fix: start etcd if not using memory as storage for Metasrv (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelScofield committed Jul 9, 2024
1 parent 3d16cf7 commit 451006b
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 451006b

Please sign in to comment.