Rename OldTLogServer -> OldTLogServer_4_6

This commit is contained in:
Alex Miller 2019-02-07 17:02:28 -08:00
parent cd00b749c8
commit 91e05575a2
5 changed files with 5 additions and 5 deletions

View File

@ -48,7 +48,7 @@ set(FDBSERVER_SRCS
MoveKeys.actor.h
networktest.actor.cpp
NetworkTest.h
OldTLogServer.actor.cpp
OldTLogServer_4_6.actor.cpp
Orderer.actor.h
pubsub.actor.cpp
pubsub.h

View File

@ -43,7 +43,7 @@ using std::make_pair;
using std::min;
using std::max;
namespace oldTLog {
namespace oldTLog_4_6 {
typedef int16_t OldTag;

View File

@ -1711,7 +1711,7 @@ ACTOR Future<Void> restorePersistentState( TLogData* self, LocalityData locality
tlogRequests.getFuture().pop().reply.sendError(recruitment_failed());
}
wait( oldTLog::tLog(self->persistentData, self->rawPersistentQueue, self->dbInfo, locality, self->dbgid) );
wait( oldTLog_4_6::tLog(self->persistentData, self->rawPersistentQueue, self->dbInfo, locality, self->dbgid) );
throw internal_error();
}

View File

@ -363,7 +363,7 @@ ACTOR Future<Void> dataDistributor(DataDistributorInterface ddi, Reference<Async
void registerThreadForProfiling();
void updateCpuProfiler(ProfilerRequest req);
namespace oldTLog {
namespace oldTLog_4_6 {
ACTOR Future<Void> tLog(IKeyValueStore* persistentData, IDiskQueue* persistentQueue,
Reference<AsyncVar<ServerDBInfo>> db, LocalityData locality, UID tlogId);
}

View File

@ -57,8 +57,8 @@
<ActorCompiler Include="LogSystemPeekCursor.actor.cpp" />
<ActorCompiler Include="MemoryPager.actor.cpp" />
<ActorCompiler Include="LogRouter.actor.cpp" />
<ActorCompiler Include="OldTLogServer.actor.cpp" />
<ClCompile Include="LatencyBandConfig.cpp" />
<ActorCompiler Include="OldTLogServer_4_6.actor.cpp" />
<ClCompile Include="SkipList.cpp" />
<ActorCompiler Include="WaitFailure.actor.cpp" />
<ActorCompiler Include="tester.actor.cpp" />