forked from hasura/graphql-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata_inconsistency_drop.go
43 lines (38 loc) · 1.07 KB
/
metadata_inconsistency_drop.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package commands
import (
"github.com/hasura/graphql-engine/cli"
"github.com/hasura/graphql-engine/cli/migrate"
"github.com/pkg/errors"
"github.com/spf13/cobra"
)
func newMetadataInconsistencyDropCmd(ec *cli.ExecutionContext) *cobra.Command {
opts := &metadataInconsistencyDropOptions{
EC: ec,
}
metadataInconsistencyDropCmd := &cobra.Command{
Use: "drop",
Short: "Drop inconsistent objects from the metadata",
SilenceUsage: true,
RunE: func(cmd *cobra.Command, args []string) error {
opts.EC.Spin("Dropping inconsistent metadata...")
err := opts.run()
opts.EC.Spinner.Stop()
if err != nil {
return errors.Wrap(err, "failed to drop inconsistent metadata")
}
opts.EC.Logger.Info("all inconsistent objects removed from metadata")
return nil
},
}
return metadataInconsistencyDropCmd
}
type metadataInconsistencyDropOptions struct {
EC *cli.ExecutionContext
}
func (o *metadataInconsistencyDropOptions) run() error {
d, err := migrate.NewMigrate(o.EC, true)
if err != nil {
return err
}
return d.DropInconsistentMetadata()
}