summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/IceGridNode.cpp
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2019-10-29 14:11:27 -0400
committerJoe George <joe@zeroc.com>2021-02-01 16:46:20 -0500
commit9f22d436c536c18df0e3c434162048490c80191f (patch)
treeda5257cb9435bcdbe3614e4f758e36244cac5ed0 /cpp/src/IceGrid/IceGridNode.cpp
parentFixed doxygen warnings and updated configs. (diff)
downloadice-9f22d436c536c18df0e3c434162048490c80191f.tar.bz2
ice-9f22d436c536c18df0e3c434162048490c80191f.tar.xz
ice-9f22d436c536c18df0e3c434162048490c80191f.zip
Remove IcePatch2 (#602)
Removed IcePatch2 and the corresponding distrib and patching features in IceGrid and IceGridGUI.
Diffstat (limited to 'cpp/src/IceGrid/IceGridNode.cpp')
-rw-r--r--cpp/src/IceGrid/IceGridNode.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/cpp/src/IceGrid/IceGridNode.cpp b/cpp/src/IceGrid/IceGridNode.cpp
index 389f2fc8516..7d404da3fe5 100644
--- a/cpp/src/IceGrid/IceGridNode.cpp
+++ b/cpp/src/IceGrid/IceGridNode.cpp
@@ -19,7 +19,6 @@
#include <IceGrid/TraceLevels.h>
#include <IceGrid/DescriptorParser.h>
#include <IceGrid/Util.h>
-#include <IcePatch2Lib/Util.h>
#ifdef _WIN32
# include <direct.h>
@@ -361,9 +360,8 @@ NodeService::startImpl(int argc, char* argv[], int& status)
dataPath += "/";
}
- IcePatch2Internal::createDirectory(dataPath + "servers");
- IcePatch2Internal::createDirectory(dataPath + "tmp");
- IcePatch2Internal::createDirectory(dataPath + "distrib");
+ createDirectory(dataPath + "servers");
+ createDirectory(dataPath + "tmp");
#ifdef _WIN32
//
@@ -376,7 +374,6 @@ NodeService::startImpl(int argc, char* argv[], int& status)
{
setNoIndexingAttribute(dataPath + "servers");
setNoIndexingAttribute(dataPath + "tmp");
- setNoIndexingAttribute(dataPath + "distrib");
}
catch(const FileException& ex)
{