[auto/go] - Set DryRun on RunInfo (#6099)

This commit is contained in:
Komal 2021-01-13 13:05:36 -08:00 committed by GitHub
parent 12ccaabd57
commit a35b61e0b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -2,8 +2,12 @@ CHANGELOG
=========
## HEAD (Unreleased)
- [automation api] Add debug logging settings for common automation API operations
- [automation/go] Add debug logging settings for common automation API operations
[#6095](https://github.com/pulumi/pulumi/pull/6095)
- [automation/go] Set DryRun on previews so unknowns are identified correctly.
[#6099](https://github.com/pulumi/pulumi/pull/6099)
## 2.17.1 (2021-01-13)

View file

@ -878,6 +878,7 @@ func (s *languageRuntimeServer) Run(ctx context.Context, req *pulumirpc.RunReque
Project: req.GetProject(),
Stack: req.GetStack(),
Parallel: int(req.GetParallel()),
DryRun: req.GetDryRun(),
}
pulumiCtx, err := pulumi.NewContext(ctx, runInfo)