Github user achristianson commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/134#discussion_r137881468
--- Diff: libminifi/src/RemoteProcessorGroupPort.cpp ---
@@ -202,14 +205,13 @@ void
RemoteProcessorGroupPort::onTrigger(core::ProcessContext *context, core::Pr
context->yield();
session->rollback();
}
-
-
- throw std::exception();
+ logger_->log_info("on trigger throw exception");
+ return;
}
void RemoteProcessorGroupPort::refreshRemoteSite2SiteInfo() {
if (this->host_.empty() || this->port_ == -1 || this->protocol_.empty())
--- End diff --
Missing curlies.
---