Skip to content

Commit

Permalink
Use new source method
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidS-ovm committed Mar 29, 2024
1 parent e8dbc1c commit f735121
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/terraform_plan.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"github.com/overmindtech/cli/tracing"
"github.com/overmindtech/sdp-go"
"github.com/overmindtech/sdp-go/auth"
stdlibsource "github.com/overmindtech/stdlib-source/cmd"
stdlibsource "github.com/overmindtech/stdlib-source/sources"

Check failure on line 25 in cmd/terraform_plan.go

View workflow job for this annotation

GitHub Actions / dry-run

no required module provides package github.com/overmindtech/stdlib-source/sources; to add it:
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/spf13/viper"
Expand Down Expand Up @@ -272,7 +272,7 @@ func InitializeSources(ctx context.Context, oi OvermindInstance, token *oauth2.T
return func() {}, fmt.Errorf("failed to start AWS source engine: %w", err)
}

stdlibEngine, err := stdlibsource.InitializeStdlibSourceEngine(natsOptions, 2_000, true)
stdlibEngine, err := stdlibsource.InitializeEngine(natsOptions, 2_000, true)
if err != nil {
return func() {
_ = awsEngine.Stop()
Expand Down

0 comments on commit f735121

Please sign in to comment.