forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
92626: vendor: fork google storage sdk to cherry-pick fix for chunked upload retry r=rhu713 a=rhu713 Currently google storage v0.80.0 has a bug where the first request of chunked uploads are never retried. Replace this dependency with a fork of v0.80.0 with the fix cherry-picked. Cherry-picked commit: googleapis/google-api-go-client@2c3e863 Release note: None 92685: changefeedccl: fix cloudstorage doublecount of emitted messages r=samiskin a=samiskin Resolves cockroachdb#92688 The cloudstorage sink would increase its emitted message count twice per message since there were two calls to Write, one for the message and another for the delimiter. This change moves the increasing of the count into EmitRow. Release note (bug fix): Fixed an issue where changefeed.emitted_messages would be increased twice per message for changefeed cloudstorage sinks 92691: ui: add space for header r=maryliag a=maryliag This commit adds space between header and the top. Before <img width="1542" alt="Screen Shot 2022-11-29 at 2 28 19 PM" src="https://user-images.githubusercontent.com/1017486/204645574-8d1b73e0-34a9-44b4-90da-f18fced63076.png"> After <img width="1537" alt="Screen Shot 2022-11-29 at 3 49 08 PM" src="https://user-images.githubusercontent.com/1017486/204645591-a1b824a0-0253-470e-9e01-d5276ec84243.png"> Epic: None Release note: None Co-authored-by: Rui Hu <[email protected]> Co-authored-by: Shiranka Miskin <[email protected]> Co-authored-by: maryliag <[email protected]>
- Loading branch information
Showing
8 changed files
with
19 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9260,10 +9260,10 @@ def go_deps(): | |
name = "org_golang_google_api", | ||
build_file_proto_mode = "disable_global", | ||
importpath = "google.golang.org/api", | ||
sha256 = "13442f94637aa7d95d31a99dcf144e91d3d71d478ee18b8db7a88e9cf021c558", | ||
strip_prefix = "google.golang.org/[email protected].0", | ||
sha256 = "b3378c579f4f4340403038305907d672c86f615f8233118a8873ebe4229c4f39", | ||
strip_prefix = "github.com/cockroachdb/google-api-go-client@v0.80.1-0.20221117193156-6a9f7150cb93", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/google.golang.org/api/org_golang_google_api-v0.80.0.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/google-api-go-client/com_github_cockroachdb_google_api_go_client-v0.80.1-0.20221117193156-6a9f7150cb93.zip", | ||
], | ||
) | ||
go_repository( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -152,3 +152,7 @@ | |
.margin-right { | ||
margin-right: 12px !important; | ||
} | ||
|
||
.margin-header { | ||
margin-top: 10px; | ||
} |
Submodule vendor
updated
2 files
+20 −9 | google.golang.org/api/internal/gensupport/media.go | |
+1 −1 | modules.txt |