Skip to content

Commit feb0267

Browse files
committed
all: release v0.9.0
This CL will be tagged v0.9.0. Change-Id: I28d09c9e70ff487c0c724f43d480eb2fa16fd79f Reviewed-on: https://code-review.googlesource.com/c/google-api-go-client/+/44250 Reviewed-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com> Reviewed-by: Tyler Bui-Palsulich <tbp@google.com>
1 parent 50e5754 commit feb0267

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# v0.9.0
2+
3+
- Small fix to chunking retry logic such that each chunk has its own retry
4+
deadline, instead of unbounded retries.
5+
- Various updates to autogenerated clients.
6+
7+
_Please note:_ the release version is not indicative of an individual client's
8+
stability or version.
9+
110
# v0.8.0
211

312
- Various updates to autogenerated clients.

gensupport/resumable_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,9 @@ func TestCancelUploadFast(t *testing.T) {
213213

214214
tr := &interruptibleTransport{
215215
buf: make([]byte, 0, mediaSize),
216+
// Shouldn't really need an event, but sometimes the test loses the
217+
// race. So, this is just a filler event.
218+
events: []event{{"bytes 0-9/*", http.StatusServiceUnavailable}},
216219
}
217220

218221
pr := progressRecorder{}

0 commit comments

Comments
 (0)