adamdebreceni commented on a change in pull request #821:
URL: https://github.com/apache/nifi-minifi-cpp/pull/821#discussion_r445453450



##########
File path: libminifi/test/TestBase.cpp
##########
@@ -168,6 +168,30 @@ std::shared_ptr<core::Processor> 
TestPlan::addProcessor(const std::string &proce
   return addProcessor(processor_name, uuid, name, relationships, 
linkToPrevious);
 }
 
+std::shared_ptr<minifi::Connection> TestPlan::addConnection(const 
std::shared_ptr<core::Processor> source_proc, const core::Relationship& 
source_relationship, const std::shared_ptr<core::Processor>& destination_proc) {
+  std::stringstream connection_name;
+  connection_name << source_proc->getUUIDStr() << "-to-" << 
destination_proc->getUUIDStr();

Review comment:
       nope, it was just an info, since `TestPlan` does it like this and it is 
it's method, I'm good




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to