-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove vendored plugin server #2410
Conversation
As part of #2148, this PR removes the duplicate implementation of `pulumigrpc.ResourceProviderServer` copied over from pulumi/pulumi and then modified. This is a post #2258 version of #2195, and is much less invasive. Addressing previous edits in response to #2195 (comment): - #1716: This change accommodated for a previous edit (`ProviderWithContext`) and is no longer necessary. That said, the tests it introduced are still present (and continue to pass), so we are sure this commit did not break the functionality. - #1683: Simply brings DiffConfig into line with pu/pu, which we get for free by not vendoring. - #1047: This is still handled in `provider_server.go`, and is still under test. - #1065: This has already been moved out of this area in #2258, so it is no longer relevant here.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2410 +/- ##
==========================================
+ Coverage 57.10% 57.65% +0.55%
==========================================
Files 369 369
Lines 50593 50110 -483
==========================================
Hits 28893 28893
+ Misses 20123 19638 -485
- Partials 1577 1579 +2 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM - would be good to test with a PF provider and/or a dynamically bridged one
You've hit pulumi/pulumi#14240 |
This PR has been shipped in release v3.91.0. |
Very nice cleanup here thank you. |
Reverts #2410 --------- Co-authored-by: guineveresaenger <guinevere@pulumi.com>
As part of #2148, this PR removes the duplicate implementation of
pulumigrpc.ResourceProviderServer
copied over from pulumi/pulumi and then modified.This is a post #2258 version of #2195, and is much less invasive.
Addressing previous edits in response to
#2195 (comment):
ProviderWithContext
) and is no longer necessary. That said, the tests it introduced are still present (and continue to pass), so we are sure this commit did not break the functionality.provider_server.go
, and is still under test.