diff --git a/src/ripple/app/paths/PathRequest.cpp b/src/ripple/app/paths/PathRequest.cpp index 150f1c427..5420a2c1b 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; }