lordgamez commented on a change in pull request #1281:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1281#discussion_r832234158
##########
File path: extensions/http-curl/tests/C2ClearCoreComponentStateTest.cpp
##########
@@ -65,7 +65,9 @@ class VerifyC2ClearCoreComponentState : public VerifyC2Base {
class ClearCoreComponentStateHandler: public HeartbeatHandler {
public:
- explicit ClearCoreComponentStateHandler(std::atomic_bool&
component_cleared_successfully) :
component_cleared_successfully_(component_cleared_successfully) {
+ explicit ClearCoreComponentStateHandler(std::atomic_bool&
component_cleared_successfully, std::shared_ptr<minifi::Configure>
configuration)
+ : HeartbeatHandler(std::move(configuration)),
+ component_cleared_successfully_(component_cleared_successfully) {
Review comment:
We are asserting on the variable while waiting until the timeout for its
value to return true on line 49.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]