Skip to content

Commit bc27df2

Browse files
Google APIscopybara-github
authored andcommitted
chore(pubsub): remove extraneous ctype field annotations
PiperOrigin-RevId: 496666857
1 parent 1db5ebd commit bc27df2

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

google/pubsub/v1/pubsub.proto

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -795,8 +795,8 @@ message Subscription {
795795
google.protobuf.Duration topic_message_retention_duration = 17
796796
[(google.api.field_behavior) = OUTPUT_ONLY];
797797

798-
// Output only. An output-only field indicating whether or not the subscription can receive
799-
// messages.
798+
// Output only. An output-only field indicating whether or not the
799+
// subscription can receive messages.
800800
State state = 19 [(google.api.field_behavior) = OUTPUT_ONLY];
801801
}
802802

@@ -969,8 +969,8 @@ message BigQueryConfig {
969969
// subscription's backlog.
970970
bool drop_unknown_fields = 4;
971971

972-
// Output only. An output-only field that indicates whether or not the subscription can
973-
// receive messages.
972+
// Output only. An output-only field that indicates whether or not the
973+
// subscription can receive messages.
974974
State state = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
975975
}
976976

@@ -1252,25 +1252,25 @@ message StreamingPullResponse {
12521252
// previously received message.
12531253
message AcknowledgeConfirmation {
12541254
// Successfully processed acknowledgement IDs.
1255-
repeated string ack_ids = 1 [ctype = CORD];
1255+
repeated string ack_ids = 1;
12561256

12571257
// List of acknowledgement IDs that were malformed or whose acknowledgement
12581258
// deadline has expired.
1259-
repeated string invalid_ack_ids = 2 [ctype = CORD];
1259+
repeated string invalid_ack_ids = 2;
12601260

12611261
// List of acknowledgement IDs that were out of order.
1262-
repeated string unordered_ack_ids = 3 [ctype = CORD];
1262+
repeated string unordered_ack_ids = 3;
12631263
}
12641264

12651265
// Acknowledgement IDs sent in one or more previous requests to modify the
12661266
// deadline for a specific message.
12671267
message ModifyAckDeadlineConfirmation {
12681268
// Successfully processed acknowledgement IDs.
1269-
repeated string ack_ids = 1 [ctype = CORD];
1269+
repeated string ack_ids = 1;
12701270

12711271
// List of acknowledgement IDs that were malformed or whose acknowledgement
12721272
// deadline has expired.
1273-
repeated string invalid_ack_ids = 2 [ctype = CORD];
1273+
repeated string invalid_ack_ids = 2;
12741274
}
12751275

12761276
// Subscription properties sent as part of the response.

0 commit comments

Comments
 (0)