fix audit state serializer (#10889)
This commit is contained in:
parent
55f2eaec2d
commit
2a40fb4135
|
@ -54,7 +54,7 @@ struct AuditStorageState {
|
|||
|
||||
template <class Ar>
|
||||
void serialize(Ar& ar) {
|
||||
serializer(ar, id, auditServerId, range, type, phase, error, ddId);
|
||||
serializer(ar, id, auditServerId, range, type, phase, error, ddId, engineType);
|
||||
}
|
||||
|
||||
inline void setType(AuditType type) { this->type = static_cast<uint8_t>(type); }
|
||||
|
|
|
@ -3238,7 +3238,7 @@ ACTOR Future<Void> doAuditLocationMetadata(Reference<DataDistributor> self,
|
|||
}
|
||||
|
||||
// Log statistic
|
||||
TraceEvent(SevInfo, "DDDoAuditLocationMetadataMetadata", self->ddId)
|
||||
TraceEvent(SevInfo, "DDDoAuditLocationMetadataStatistic", self->ddId)
|
||||
.suppressFor(30.0)
|
||||
.detail("AuditType", audit->coreState.getType())
|
||||
.detail("AuditId", audit->coreState.id)
|
||||
|
|
Loading…
Reference in New Issue