From 1cac5d983de408ced3c05a98a6745d1077e7c1e0 Mon Sep 17 00:00:00 2001 From: Konstantin Lebedev <9497591+kmlebedev@users.noreply.github.com> Date: Fri, 13 Oct 2023 02:29:55 +0500 Subject: fix: disallow file name too long when writing a file (#4881) * fix: disallow file name too long when writing a file * bool LongerName to MaxFilenameLength --------- Co-authored-by: Konstantin Lebedev <9497591+kmlebedev@users.noreply.github.co> --- other/java/client/src/main/proto/filer.proto | 1 + 1 file changed, 1 insertion(+) (limited to 'other/java/client/src') diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto index dd052b198..0c3b8eddc 100644 --- a/other/java/client/src/main/proto/filer.proto +++ b/other/java/client/src/main/proto/filer.proto @@ -424,6 +424,7 @@ message FilerConf { string data_center = 9; string rack = 10; string data_node = 11; + uint32 max_file_name_length = 12; } repeated PathConf locations = 2; } -- cgit v1.2.3