mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 14:46:12 -04:00
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
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user