From bf480e6666bf411addd01bd93cff571cac5cd1c3 Mon Sep 17 00:00:00 2001 From: Ben McClelland Date: Mon, 2 Mar 2020 16:19:37 -0800 Subject: [PATCH] pathmax=4096 --- scoutfs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scoutfs.go b/scoutfs.go index 4048496..86afe1c 100644 --- a/scoutfs.go +++ b/scoutfs.go @@ -22,7 +22,7 @@ import ( const ( max64 = 0xffffffffffffffff max32 = 0xffffffff - pathmax = 1024 + pathmax = 4096 sysscoutfs = "/sys/fs/scoutfs/" leaderfile = "quorum/is_leader" serveraddr = "mount_options/server_addr"