diff --git a/fdbserver/MasterInterface.h b/fdbserver/MasterInterface.h index 91a0d2444d..6cab65cbe6 100644 --- a/fdbserver/MasterInterface.h +++ b/fdbserver/MasterInterface.h @@ -51,6 +51,7 @@ struct MasterInterface { void initEndpoints() { getCommitVersion.getEndpoint( TaskPriority::ProxyGetConsistentReadVersion ); + tlogRejoin.getEndpoint( TaskPriority::MasterTLogRejoin ); } }; diff --git a/flow/network.h b/flow/network.h index 9a8a3370b4..9ce3fea679 100644 --- a/flow/network.h +++ b/flow/network.h @@ -44,6 +44,7 @@ enum class TaskPriority { FailureMonitor = 8700, ResolutionMetrics = 8700, ClusterController = 8650, + MasterTLogRejoin = 8646, ProxyStorageRejoin = 8645, ProxyCommitDispatcher = 8640, TLogQueuingMetrics = 8620,