Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(storage): fix read-write race in Writer.Write (#6817)
Fixes #6816 w.monitorCancel() -> w.CloseWithError() reads the values of w.opened and w.pw concurrently with the calling routine initializing them; if the incoming context is cancelled before or during initialization. The fix is simply to deploy starting the monitor until all fields are initialized. The older open() code from previous releases did this in the right order: https://github.com/googleapis/google-cloud-go/blob/storage/v1.24.0/storage/writer.go#L130-L134
- Loading branch information