Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix yaml duplicated mapping key #22952

Merged
merged 2 commits into from
Aug 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,8 @@ coder:
examples:
"\x03\x00\x02\x00\xb6\x95\xd5\xf9\x05\xc0\xc4\x07\x1b2020-08-13T14:14:14.123456Z\xc0\xf7\x85\xda\xae\x98\xeb\x02": {f_timestamp: {seconds: 1597328054, micros: 123456}, f_string: "2020-08-13T14:14:14.123456Z", f_int: 1597328054123456}

---

coder:
urn: "beam:coder:row:v1"
# f_timestamp: logical(millis_instant), f_string: string, f_int: int64
Expand Down
8 changes: 4 additions & 4 deletions sdks/typescript/src/apache_beam/proto/beam_runner_api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2618,19 +2618,19 @@ export interface StandardProtocols {
*/
export enum StandardProtocols_Enum {
/**
* Indicates suport for progress reporting via the legacy Metrics proto.
* Indicates support for progress reporting via the legacy Metrics proto.
*
* @generated from protobuf enum value: LEGACY_PROGRESS_REPORTING = 0;
*/
LEGACY_PROGRESS_REPORTING = 0,
/**
* Indicates suport for progress reporting via the new MonitoringInfo proto.
* Indicates support for progress reporting via the new MonitoringInfo proto.
*
* @generated from protobuf enum value: PROGRESS_REPORTING = 1;
*/
PROGRESS_REPORTING = 1,
/**
* Indicates suport for worker status protocol defined at
* Indicates support for worker status protocol defined at
* https://s.apache.org/beam-fn-api-harness-status.
*
* @generated from protobuf enum value: WORKER_STATUS = 2;
Expand Down Expand Up @@ -2685,7 +2685,7 @@ export interface StandardRunnerProtocols {
*/
export enum StandardRunnerProtocols_Enum {
/**
* Indicates suport the MonitoringInfo short id protocol.
* Indicates support the MonitoringInfo short id protocol.
*
* @generated from protobuf enum value: MONITORING_INFO_SHORT_IDS = 0;
*/
Expand Down