From 1009132c6dac103dee63af4ed949b9938cb461d2 Mon Sep 17 00:00:00 2001 From: rgoliver Date: Fri, 25 Nov 2022 09:48:06 -0500 Subject: [PATCH] RPC: Fix device proto FabricId to be 64 bit not 32 (#23752) --- examples/common/pigweed/protos/device_service.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/common/pigweed/protos/device_service.proto b/examples/common/pigweed/protos/device_service.proto index 6903e4a9055414..19be27ab7f960e 100644 --- a/examples/common/pigweed/protos/device_service.proto +++ b/examples/common/pigweed/protos/device_service.proto @@ -28,7 +28,7 @@ message DeviceInfo { } message FabricInfo { - uint32 fabric_id = 1; + uint64 fabric_id = 1; uint64 node_id = 2; }