mirror of
https://github.com/apple/foundationdb.git
synced 2025-05-14 01:42:37 +08:00
Increase AllTags field length in TLogReady
This commit is contained in:
parent
c066597af1
commit
aa2740e21e
@ -2768,8 +2768,10 @@ ACTOR Future<Void> tLogStart(TLogData* self, InitializeTLogRequest req, Locality
|
||||
req.reply.send(recruited);
|
||||
|
||||
TraceEvent("TLogReady", logData->logId)
|
||||
.detail("AllTags", describe(req.allTags))
|
||||
.detail("Locality", logData->locality);
|
||||
.detail("Locality", logData->locality)
|
||||
.setMaxEventLength(11000)
|
||||
.setMaxFieldLength(10000)
|
||||
.detail("AllTags", describe(req.allTags));
|
||||
|
||||
updater = Void();
|
||||
wait(tLogCore(self, logData, recruited, pulledRecoveryVersions));
|
||||
|
@ -3259,8 +3259,10 @@ ACTOR Future<Void> tLogStart(TLogData* self, InitializeTLogRequest req, Locality
|
||||
req.reply.send(recruited);
|
||||
|
||||
TraceEvent("TLogReady", logData->logId)
|
||||
.detail("AllTags", describe(req.allTags))
|
||||
.detail("Locality", logData->locality);
|
||||
.detail("Locality", logData->locality)
|
||||
.setMaxEventLength(11000)
|
||||
.setMaxFieldLength(10000)
|
||||
.detail("AllTags", describe(req.allTags));
|
||||
|
||||
updater = Void();
|
||||
wait(tLogCore(self, logData, recruited, pulledRecoveryVersions));
|
||||
|
@ -3502,8 +3502,10 @@ ACTOR Future<Void> tLogStart(TLogData* self, InitializeTLogRequest req, Locality
|
||||
req.reply.send(recruited);
|
||||
|
||||
TraceEvent("TLogReady", logData->logId)
|
||||
.detail("AllTags", describe(req.allTags))
|
||||
.detail("Locality", logData->locality);
|
||||
.detail("Locality", logData->locality)
|
||||
.setMaxEventLength(11000)
|
||||
.setMaxFieldLength(10000)
|
||||
.detail("AllTags", describe(req.allTags));
|
||||
|
||||
updater = Void();
|
||||
wait(tLogCore(self, logData, recruited, pulledRecoveryVersions));
|
||||
|
Loading…
x
Reference in New Issue
Block a user