From 464410d8be54945ff4539751ea2aa07d8dedf0f5 Mon Sep 17 00:00:00 2001 From: Miguel Portilla Date: Wed, 19 Aug 2015 17:18:58 -0400 Subject: [PATCH] Differentiate path_find response (RIPD-1013) --- src/ripple/app/paths/PathRequest.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ripple/app/paths/PathRequest.cpp b/src/ripple/app/paths/PathRequest.cpp index 150f1c427e..5420a2c1bb 100644 --- a/src/ripple/app/paths/PathRequest.cpp +++ b/src/ripple/app/paths/PathRequest.cpp @@ -425,12 +425,14 @@ Json::Value PathRequest::doClose (Json::Value const&) { m_journal.debug << iIdentifier << " closed"; ScopedLockType sl (mLock); + jvStatus[jss::closed] = true; return jvStatus; } Json::Value PathRequest::doStatus (Json::Value const&) { ScopedLockType sl (mLock); + jvStatus[jss::status] = jss::success; return jvStatus; }