From 37714b1093c04061e636e5b1d27179652e671c0a Mon Sep 17 00:00:00 2001
From: liuxiaolong <liuxiaolong@aiotlink.com>
Date: 星期二, 28 六月 2022 16:41:28 +0800
Subject: [PATCH] set UserEventSizeLimit to 90K

---
 serf/serf.go |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/serf/serf.go b/serf/serf.go
index 207ff6a..e546b29 100644
--- a/serf/serf.go
+++ b/serf/serf.go
@@ -224,7 +224,7 @@
 
 const (
 	snapshotSizeLimit  = 128 * 1024 // Maximum 128 KB snapshot
-	UserEventSizeLimit = 9 * 1024   // Maximum 9KB for event name and payload
+	UserEventSizeLimit = 9 * 10 * 1024   // Maximum 9KB for event name and payload
 )
 
 // Create creates a new Serf instance, starting all the background tasks

--
Gitblit v1.8.0