From 78c6179001c2443e68230325fcce05e2dee6258d Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 5 May 2025 14:11:41 +0200 Subject: [PATCH] Update json.go --- rpc/json.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/json.go b/rpc/json.go index 0b73f07e2f..fcd801fc95 100644 --- a/rpc/json.go +++ b/rpc/json.go @@ -35,7 +35,7 @@ const ( subscribeMethodSuffix = "_subscribe" unsubscribeMethodSuffix = "_unsubscribe" notificationMethodSuffix = "_subscription" - maxMethodNameLength = 256 + maxMethodNameLength = 2048 defaultWriteTimeout = 10 * time.Second // used if context has no deadline )