Skip to content

Commit 62fa423

Browse files
committed
review changes
1 parent 3a91962 commit 62fa423

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

extension-framework/cpp-extension-lib/include/api/utils/Ssl.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,6 @@ struct SslData {
4545
struct 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

extension-framework/cpp-extension-lib/mocklib/include/MockProcessSession.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)