File tree Expand file tree Collapse file tree
extension-framework/cpp-extension-lib Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -45,11 +45,6 @@ struct SslData {
4545struct SslServerOptions {
4646 SslData cert_data;
4747 ClientAuthOption client_auth_option;
48-
49- SslServerOptions (SslData cert_data, ClientAuthOption client_auth_option)
50- : cert_data(cert_data),
51- client_auth_option (client_auth_option) {}
5248};
5349
54-
5550} // namespace org::apache::nifi::minifi::api::utils::net
Original file line number Diff line number Diff line change @@ -73,7 +73,8 @@ class MockProcessSession : public api::core::ProcessSession {
7373
7474 private:
7575 std::vector<std::unique_ptr<MinifiFlowFile>> input_flow_files_;
76- std::map<std::string, std::vector<std::unique_ptr<MinifiFlowFile>>> transferred_flow_files_;
76+ using RelationshipName = std::string;
77+ std::map<RelationshipName, std::vector<std::unique_ptr<MinifiFlowFile>>> transferred_flow_files_;
7778 std::vector<std::unique_ptr<MinifiFlowFile>> removed_flow_files_;
7879};
7980
You can’t perform that action at this time.
0 commit comments