You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
params = param_type === Nothing ?nothing: param_type <:NamedTuple?convert(param_type,(;(Symbol(i[1])=>i[2] for i in msg["params"])...)) :param_type(msg["params"])
65
+
params = param_type === Nothing ?nothing: param_type <:NamedTuple?convert(param_type, (; (Symbol(i[1])=>i[2] for i in msg["params"])...)) :param_type(msg["params"])
66
66
67
67
res = handler.func(x, params)
68
68
@@ -73,7 +73,7 @@ function dispatch_msg(x::JSONRPCEndpoint, dispatcher::MsgDispatcher, msg)
73
73
send_success_response(x, msg, res)
74
74
else
75
75
error_msg ="The handler for the '$method_name' request returned a value of type $(typeof(res)), which is not a valid return type according to the request definition."
0 commit comments