diff options
Diffstat (limited to 'internal/gotosocial/actions.go')
-rw-r--r-- | internal/gotosocial/actions.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/gotosocial/actions.go b/internal/gotosocial/actions.go index 3d3fdc366..398c0b44f 100644 --- a/internal/gotosocial/actions.go +++ b/internal/gotosocial/actions.go @@ -38,9 +38,9 @@ var Run action.GTSAction = func(ctx context.Context, c *config.Config, log *logr return fmt.Errorf("error creating dbservice: %s", err) } - if err := dbService.CreateSchema(ctx); err != nil { - return fmt.Errorf("error creating dbschema: %s", err) - } + // if err := dbService.CreateSchema(ctx); err != nil { + // return fmt.Errorf("error creating dbschema: %s", err) + // } // catch shutdown signals from the operating system sigs := make(chan os.Signal, 1) |