Skip to content

Commit b023b7b

Browse files
committed
fix ci failures
1 parent 8a0ff6c commit b023b7b

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

google/cloud/storage/google_cloud_cpp_storage.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ google_cloud_cpp_storage_hdrs = [
117117
"internal/well_known_parameters_impl.h",
118118
"lifecycle_rule.h",
119119
"list_buckets_reader.h",
120+
"list_buckets_partial_reader.h",
120121
"list_hmac_keys_reader.h",
121122
"list_objects_and_prefixes_reader.h",
122123
"list_objects_reader.h",

google/cloud/storage/google_cloud_cpp_storage.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ add_library(
198198
internal/win32/hash_function_impl.cc
199199
lifecycle_rule.cc
200200
lifecycle_rule.h
201+
list_buckets_partial_reader.h
201202
list_buckets_reader.cc
202203
list_buckets_reader.h
203204
list_hmac_keys_reader.cc

google/cloud/storage/internal/bucket_requests.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,6 @@ class ListBucketsRequest
6060

6161
std::ostream& operator<<(std::ostream& os, ListBucketsRequest const& r);
6262

63-
struct ListBucketsResult {
64-
std::string page_token;
65-
std::vector<BucketMetadata> items;
66-
std::vector<std::string> unreachable;
67-
};
68-
6963
struct ListBucketsResponse {
7064
static StatusOr<ListBucketsResponse> FromHttpResponse(
7165
std::string const& payload);

google/cloud/storage/internal/grpc/bucket_request_parser_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ TEST(GrpcBucketRequestParser, ListBucketsResponse) {
217217
bucket_id: "test-bucket-2"
218218
}
219219
unreachable { "projects/_/buckets/bucket1"
220-
"projects/1234567/locations/location1" }
220+
"projects/_/buckets/bucket2" }
221221
next_page_token: "test-token"
222222
)pb",
223223
&input));

0 commit comments

Comments
 (0)