martinzink commented on a change in pull request #1035: URL: https://github.com/apache/nifi-minifi-cpp/pull/1035#discussion_r601340336
########## File path: nanofi/src/api/nanofi.cpp ########## @@ -131,20 +131,26 @@ nifi_instance *create_instance_repo(const char *url, nifi_port *port, const char return instance; } +nifi_instance * acquire_standalone_instance () { + if (standalone_instance == nullptr) { + nifi_port port; + auto port_str = utils::IdGenerator::getIdGenerator()->generate().to_string(); + port.port_id = const_cast<char *>(port_str.c_str()); Review comment: changed in [6e43953](https://github.com/martinzink/nifi-minifi-cpp/commit/6e4395376e34445296946998d0110de92b24511e) -- 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