From 433d9d84f87b1aec2c6fceb0dfa4df06ae7847c5 Mon Sep 17 00:00:00 2001 From: edwinwu Date: Thu, 24 Feb 2022 23:30:37 -0800 Subject: [PATCH] BEGIN_PUBLIC Fix the format of offline_wire_formats.proto END_PUBLIC. -- error caused by copybara-presubmit => ``` Migration resulted in error 'PERMANENT_ERROR' Non reversible transformations: diff --git a/origin/google3/third_party/nearby/connections/implementation/proto/offline_wire_formats.proto b/reverse/google3/third_party/nearby/connections/implementation/proto/offline_wire_formats.proto index de0aed4..5d4bb08 100644 --- a/origin/google3/third_party/nearby/connections/implementation/proto/offline_wire_formats.proto +++ b/reverse/google3/third_party/nearby/connections/implementation/proto/offline_wire_formats.proto @@ -143,7 +143,9 @@ message PayloadTransferFrame { // Accompanies DATA packets. message PayloadChunk { - enum Flags { LAST_CHUNK = 0x1; } + enum Flags { + LAST_CHUNK = 0x1; + } optional int32 flags = 1; optional int64 offset = 2; optional bytes body = 3; Workflow 'presubmit_piper_to_github' is not reversible Configuration errorErrors happened during the migration ``` PiperOrigin-RevId: 430878757 --- connections/implementation/proto/offline_wire_formats.proto | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/connections/implementation/proto/offline_wire_formats.proto b/connections/implementation/proto/offline_wire_formats.proto index 7308ee9a..8a4d1767 100644 --- a/connections/implementation/proto/offline_wire_formats.proto +++ b/connections/implementation/proto/offline_wire_formats.proto @@ -143,7 +143,9 @@ message PayloadTransferFrame { // Accompanies DATA packets. message PayloadChunk { - enum Flags { LAST_CHUNK = 0x1; } + enum Flags { + LAST_CHUNK = 0x1; + } optional int32 flags = 1; optional int64 offset = 2; optional bytes body = 3;