mirror of
https://github.com/apple/foundationdb.git
synced 2025-06-02 19:25:52 +08:00
Fix a compilation issue in TestTLogServer.actor.cpp
Without this change, `cmake --build` fails with (on macOS with Apple clang 15.0.0): fdbserver/TestTLogServer.actor.cpp:363:125: error: use 'template' keyword to treat 'getReply' as a dependent template name
This commit is contained in:
parent
96802d7b8b
commit
0a3b496a2c
@ -360,8 +360,8 @@ ACTOR Future<Void> startTestsTLogRecoveryActors(TestTLogOptions params) {
|
||||
wait(pTLogTestContextEpochOne->peekCommitMessages(0, 0));
|
||||
} else {
|
||||
// Done with old generation. Lock the old generation of tLogs.
|
||||
TLogLockResult data = wait(
|
||||
pTLogTestContextEpochOne->pTLogContextList[tLogIdx]->TestTLogInterface.lock.getReply<TLogLockResult>());
|
||||
TLogLockResult data = wait(pTLogTestContextEpochOne->pTLogContextList[tLogIdx]
|
||||
->TestTLogInterface.lock.template getReply<TLogLockResult>());
|
||||
TraceEvent("TestTLogServerLockResult").detail("KCV", data.knownCommittedVersion);
|
||||
|
||||
state Reference<TLogTestContext> pTLogTestContextEpochTwo =
|
||||
|
Loading…
x
Reference in New Issue
Block a user