From 5c977f2c850121148b6485f5e2a05538aedfcae5 Mon Sep 17 00:00:00 2001 From: benthompson15 Date: Fri, 3 Apr 2020 12:41:06 -0500 Subject: [PATCH] MCOL-3905: slavecomm should use the path provided to the function for openning journal file with the change that added UUID to path for downloaded files during getDBRMData. --- versioning/BRM/slavecomm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versioning/BRM/slavecomm.cpp b/versioning/BRM/slavecomm.cpp index eef66bea4..097cf3959 100644 --- a/versioning/BRM/slavecomm.cpp +++ b/versioning/BRM/slavecomm.cpp @@ -2195,7 +2195,7 @@ int SlaveComm::replayJournal(string prefix) fName = prefix + "_journal"; } - const char* filename = journalName.c_str(); + const char* filename = fName.c_str(); IDBDataFile* journalf = IDBDataFile::open( IDBPolicy::getType(filename, IDBPolicy::WRITEENG), filename, "rb", 0);