Github user phrocker commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/364#discussion_r197815585
--- Diff: main/MiNiFiMain.cpp ---
@@ -71,7 +71,7 @@ int main(int argc, char **argv) {
std::string nifi_configuration_class_name = "yamlconfiguration";
std::string content_repo_class = "filesystemrepository";
- running = sem_open("MiNiFiMain", O_CREAT, 0644, 0);
+ running = sem_open("/MiNiFiMain", O_CREAT, 0644, 0);
--- End diff --
Might have to have to use a relative path here. May actually want to use
MINIFI_HOME here to avoid issues.
---