From 8bd76fb429f2c9e02769c9a67471b587c6724fa1 Mon Sep 17 00:00:00 2001 From: Snow Pettersen Date: Tue, 19 May 2026 19:54:16 -0400 Subject: [PATCH] remove pgv validation from feature flag name --- src/bitdrift_public/protobuf/client/v1/feature_flag.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bitdrift_public/protobuf/client/v1/feature_flag.proto b/src/bitdrift_public/protobuf/client/v1/feature_flag.proto index c1e10e6..0952e92 100644 --- a/src/bitdrift_public/protobuf/client/v1/feature_flag.proto +++ b/src/bitdrift_public/protobuf/client/v1/feature_flag.proto @@ -13,7 +13,7 @@ import "google/protobuf/timestamp.proto"; import "validate/validate.proto"; message FeatureFlag { // The name of the feature flag. - string name = 1 [(validate.rules).string = {min_len: 1}]; + string name = 1; // The variant of the feature flag, if any. optional string variant = 2;