Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
GDYendell committed Sep 27, 2024
1 parent 0af2633 commit 7b471a3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions cpp/data/eigerfan/src/MultiPullBroker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@

#include <log4cxx/logger.h> // getLogger

#include "EigerDefinitions.h"
#include "MultiPullBroker.h"

using namespace Eiger;

MultiPullBroker::MultiPullBroker(
std::string& sink_endpoint,
int thread_count
Expand Down
4 changes: 2 additions & 2 deletions cpp/data/eigerfan/src/eigerfan_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include <cstring>
#include <string>
#include <sstream>
#include <pthread.h>
#include <pthread.h>

#include <log4cxx/basicconfigurator.h>
#include <log4cxx/propertyconfigurator.h>
Expand Down Expand Up @@ -263,7 +263,7 @@ int parse_arguments(int argc, char** argv, EigerFanConfig &cfg)

if (vm.count("context-threads"))
{
cfg.setNum0MQContexThreads(vm["context-threads"].as<unsigned int>());
cfg.setNum0MQContextThreads(vm["context-threads"].as<unsigned int>());
LOG4CXX_DEBUG(logger, "Setting number of ZeroMQ context threads to " << cfg.getNum0MQContextThreads());
}

Expand Down

0 comments on commit 7b471a3

Please sign in to comment.