diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2019-08-07 11:23:48 -0500 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2019-08-07 11:23:48 -0500 |
commit | f7e8d8f1ddc142c5f788fb941c096ac2fea8cb44 (patch) | |
tree | 80cce7a3d97551413823ac910b761a03ab3d1f1b /service | |
parent | 3ed8e46782aec83991aa8dbe4936ab36beca2501 (diff) | |
download | infinitytier-f7e8d8f1ddc142c5f788fb941c096ac2fea8cb44.tar.gz infinitytier-f7e8d8f1ddc142c5f788fb941c096ac2fea8cb44.zip |
Fix LFDB path issue when using with Postgress in DBMirrorSet config
Diffstat (limited to 'service')
-rw-r--r-- | service/OneService.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/OneService.cpp b/service/OneService.cpp index 7c9671e5..13dca4b0 100644 --- a/service/OneService.cpp +++ b/service/OneService.cpp @@ -776,7 +776,7 @@ public: OSUtils::rmDashRf((_homePath + ZT_PATH_SEPARATOR_S "iddb.d").c_str()); // Network controller is now enabled by default for desktop and server - _controller = new EmbeddedNetworkController(_node,_controllerDbPath.c_str(),_ports[0], _mqc); + _controller = new EmbeddedNetworkController(_node,_homePath.c_str(),_controllerDbPath.c_str(),_ports[0], _mqc); _node->setNetconfMaster((void *)_controller); // Join existing networks in networks.d |