take out poolSize param in dispatcher
diff --git a/src/dispatcher.cc b/src/dispatcher.cc
index a0ef0a1..6635c12 100644
--- a/src/dispatcher.cc
+++ b/src/dispatcher.cc
@@ -38,13 +38,12 @@
                        , const std::string &sharedFolder
                        , const filesystem::path &rootDir
                        , Ccnx::CcnxWrapperPtr ccnx
-                       , int poolSize
                        , bool enablePrefixDiscovery
                        )
            : m_ccnx(ccnx)
            , m_core(NULL)
            , m_rootDir(rootDir)
-           , m_executor(1/*poolSize*/) // creates problems with file assembly. need to ensure somehow that FinishExectute is called after all Segment_Execute finished
+           , m_executor(1) // creates problems with file assembly. need to ensure somehow that FinishExectute is called after all Segment_Execute finished
            , m_objectManager(ccnx, rootDir)
            , m_localUserName(localUserName)
            , m_sharedFolder(sharedFolder)
diff --git a/src/dispatcher.h b/src/dispatcher.h
index 540bca1..b2b1e5c 100644
--- a/src/dispatcher.h
+++ b/src/dispatcher.h
@@ -50,7 +50,6 @@
              , const std::string &sharedFolder
              , const boost::filesystem::path &rootDir
              , Ccnx::CcnxWrapperPtr ccnx
-             , int poolSize = 2
              , bool enablePrefixDiscovery = true
              );
   ~Dispatcher();