Automated Pulumi/Pulumi upgrade (#175)

Co-authored-by: Bryce Lampe <bryce@pulumi.com>
This commit is contained in:
Pulumi Bot
2024-08-08 16:05:09 -07:00
committed by GitHub
parent 724836b5ef
commit 5cc3415b34
20 changed files with 337 additions and 283 deletions

View File

@@ -218,12 +218,12 @@ func (i *Index) Read(
// exist on the same registry. This is sufficient to handle the most common
// cases for now.
func (i *Index) Check(
_ context.Context,
ctx context.Context,
_ string,
_ resource.PropertyMap,
news resource.PropertyMap,
) (IndexArgs, []provider.CheckFailure, error) {
args, failures, err := infer.DefaultCheck[IndexArgs](news)
args, failures, err := infer.DefaultCheck[IndexArgs](ctx, news)
if err != nil {
return args, failures, err
}