Fix LFDB path issue when using with Postgress in DBMirrorSet config

This commit is contained in:
Adam Ierymenko 2019-08-07 11:23:48 -05:00
parent 3ed8e46782
commit f7e8d8f1dd
No known key found for this signature in database
GPG key ID: 1657198823E52A61
3 changed files with 6 additions and 4 deletions

View file

@ -66,7 +66,7 @@ public:
* @param node Parent node
* @param dbPath Database path (file path or database credentials)
*/
EmbeddedNetworkController(Node *node,const char *dbPath, int listenPort, MQConfig *mqc = NULL);
EmbeddedNetworkController(Node *node,const char *ztPath,const char *dbPath, int listenPort, MQConfig *mqc = NULL);
virtual ~EmbeddedNetworkController();
virtual void init(const Identity &signingId,Sender *sender);
@ -149,6 +149,7 @@ private:
const int64_t _startTime;
int _listenPort;
Node *const _node;
std::string _ztPath;
std::string _path;
Identity _signingId;
std::string _signingIdAddressString;