Github user PivotalSarge commented on a diff in the pull request: https://github.com/apache/geode-native/pull/74#discussion_r107993045 --- Diff: src/cppcache/src/ThinClientRegion.hpp --- @@ -416,14 +416,21 @@ class ChunkedFunctionExecutionResponse : public TcrChunkedResult { public: inline ChunkedFunctionExecutionResponse( - TcrMessage& msg, bool getResult, ResultCollectorPtr rc, - ACE_Recursive_Thread_Mutex* resultCollectorLock = NULL) + TcrMessage& msg, bool getResult, ResultCollectorPtr rc) : TcrChunkedResult(), m_msg(msg), m_getResult(getResult), - m_rc(rc), - m_resultCollectorLock(resultCollectorLock) {} - + m_rc(rc) {} + + inline ChunkedFunctionExecutionResponse( --- End diff -- This code is exercised during function execution (ExecutionImpl.cpp and ThinClientPoolDM.hpp) and thus is covered by the function execution tests.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---