Skip to content

Commit

Permalink
rebase cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
matt2e committed Oct 8, 2024
1 parent 70b8148 commit 1af1d1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/controller/admin/local_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func (s *diskSchemaRetriever) GetActiveSchema(ctx context.Context) (*schema.Sche
if err != nil {
moduleSchemas <- either.RightOf[*schema.Module](fmt.Errorf("could not load plugin for %s: %w", m.Module, err))
}
defer plugin.Kill(ctx) // nolint:errcheck
defer plugin.Kill() // nolint:errcheck

customDefaults, err := plugin.ModuleConfigDefaults(ctx, m.Dir)
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion frontend/cli/cmd_schema_diff.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func localSchema(ctx context.Context, projectConfig projectconfig.Config) (*sche
if err != nil {
moduleSchemas <- either.RightOf[*schema.Module](err)
}
defer plugin.Kill(ctx) // nolint:errcheck
defer plugin.Kill() // nolint:errcheck

customDefaults, err := plugin.ModuleConfigDefaults(ctx, m.Dir)
if err != nil {
Expand Down

0 comments on commit 1af1d1d

Please sign in to comment.