From 8d37cd9169df612df8f6ff4334f0b17d9dc7bc01 Mon Sep 17 00:00:00 2001 From: Miguel Portilla Date: Wed, 30 Sep 2015 18:43:59 -0400 Subject: [PATCH] Disable RPC coroutines --- src/ripple/rpc/handlers/RipplePathFind.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ripple/rpc/handlers/RipplePathFind.cpp b/src/ripple/rpc/handlers/RipplePathFind.cpp index e9843009e..eda995974 100644 --- a/src/ripple/rpc/handlers/RipplePathFind.cpp +++ b/src/ripple/rpc/handlers/RipplePathFind.cpp @@ -82,7 +82,8 @@ Json::Value doRipplePathFind (RPC::Context& context) Json::Value jvResult; - if (context.app.config().RUN_STANDALONE || + if (true || // TODO MPORTILLA temp fix to disable broken websocket coroutines + context.app.config().RUN_STANDALONE || context.params.isMember(jss::ledger) || context.params.isMember(jss::ledger_index) || context.params.isMember(jss::ledger_hash))