bump github.com/moby/spdystream to v0.3.0

picks up fix for data-race in Ping
This commit is contained in:
Benjamin Elder
2024-06-26 12:27:14 -07:00
parent 1d51766c7a
commit c5aa8fdc71
39 changed files with 64 additions and 53 deletions

View File

@@ -305,6 +305,8 @@ func (s *Stream) Identifier() uint32 {
// IsFinished returns whether the stream has finished
// sending data
func (s *Stream) IsFinished() bool {
s.finishLock.Lock()
defer s.finishLock.Unlock()
return s.finished
}