From 27482efa53bfb28186c2e6cecbb134c6843a897a Mon Sep 17 00:00:00 2001 From: Zepeng An Date: Tue, 1 Jul 2025 17:13:47 -0700 Subject: [PATCH] Add checksum in sfp response --- protos/statsig_forward_proxy.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/protos/statsig_forward_proxy.proto b/protos/statsig_forward_proxy.proto index 4163a15..0a98052 100644 --- a/protos/statsig_forward_proxy.proto +++ b/protos/statsig_forward_proxy.proto @@ -19,10 +19,12 @@ message ConfigSpecRequest { optional uint64 sinceTime = 12; // This was a typo but you can't delete it optional apiVersion version = 3; optional string zstdDictId = 4; + optional string checksum = 5; } message ConfigSpecResponse { string spec = 1; uint64 lastUpdated = 2; optional string zstdDictId = 3; + optional string checksum = 4; }