Skip to content

Commit

Permalink
fix RawServer host
Browse files Browse the repository at this point in the history
  • Loading branch information
blampe committed Feb 9, 2024
1 parent 65eeb6f commit 9fb4662
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion provider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ require (
github.com/muesli/reflow v0.3.0
github.com/opencontainers/go-digest v1.0.0
github.com/pkg/errors v0.9.1
github.com/pulumi/pulumi-go-provider v0.14.0
github.com/pulumi/pulumi-go-provider v0.14.1-0.20240129172111-d3b2a29547f1
github.com/pulumi/pulumi-go-provider/integration v0.10.0
github.com/pulumi/pulumi-terraform-bridge/v3 v3.74.0
github.com/pulumi/pulumi/pkg/v3 v3.105.0
Expand Down
4 changes: 2 additions & 2 deletions provider/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2292,8 +2292,8 @@ github.com/pulumi/esc v0.6.2 h1:+z+l8cuwIauLSwXQS0uoI3rqB+YG4SzsZYtHfNoXBvw=
github.com/pulumi/esc v0.6.2/go.mod h1:jNnYNjzsOgVTjCp0LL24NsCk8ZJxq4IoLQdCT0X7l8k=
github.com/pulumi/providertest v0.0.10 h1:bx77G0JYPO2Alf/SHRP05XpAYMrboKJkMIVkbFclVhI=
github.com/pulumi/providertest v0.0.10/go.mod h1:HsxjVsytcMIuNj19w1lT2W0QXY0oReXl1+h6eD2JXP8=
github.com/pulumi/pulumi-go-provider v0.14.0 h1:uq0nTfstO/QXV0EYETI4t7Kn/vjJHlYni1Sr+QcsoLg=
github.com/pulumi/pulumi-go-provider v0.14.0/go.mod h1:+2ZJDPOzZ97nFH2aJAQrH7zOmMrRWYKuA47LuVWhmIc=
github.com/pulumi/pulumi-go-provider v0.14.1-0.20240129172111-d3b2a29547f1 h1:ciAU5+kY/BPaWVl6whw/uQUoByftRyW38cy5J9pr9uc=
github.com/pulumi/pulumi-go-provider v0.14.1-0.20240129172111-d3b2a29547f1/go.mod h1:Jb4jciqN/Ayi0eiTjbQkhZh/JMvdz8t60Zz7NtJTwN8=
github.com/pulumi/pulumi-go-provider/integration v0.10.0 h1:GHesnrrvkboSjkZpC+qRwjkXBp5d+fSXqlIO92zQxvc=
github.com/pulumi/pulumi-go-provider/integration v0.10.0/go.mod h1:qAbKHpPzANFKOyjiQ0CzdgJh4DtM0gtujKhO7+l3/+w=
github.com/pulumi/pulumi-java/pkg v0.9.9 h1:F3xJUtMFDVrTGCxb7Rh2Q8s6tj7gMfM5pcoUthz7vFY=
Expand Down
2 changes: 1 addition & 1 deletion provider/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func Serve(providerName, version string, schemaBytes []byte) {
func makeProvider(host *provider.HostClient, name, version string, schemaBytes []byte) (
rpc.ResourceProviderServer, error,
) {
buildxProvider, err := p.RawServer(name, version, internal.NewBuildxProvider())
buildxProvider, err := p.RawServer(name, version, internal.NewBuildxProvider())(host)
if err != nil {
return nil, fmt.Errorf("building raw server: %s", err)
}
Expand Down

0 comments on commit 9fb4662

Please sign in to comment.