Skip to content
Snippets Groups Projects
Commit b775ea2e authored by Konstantin Kühlem's avatar Konstantin Kühlem
Browse files

chore(DisplayClusterManager): Change IsMaster / IsSlave to IsPrimary / IsSecondary

parent a5dc8c43
No related branches found
No related tags found
No related merge requests found
...@@ -198,7 +198,7 @@ bool UniversalLoggingImpl::IsClusterMaster() ...@@ -198,7 +198,7 @@ bool UniversalLoggingImpl::IsClusterMaster()
{ {
return true; // if we are not in cluster mode, we are always the master return true; // if we are not in cluster mode, we are always the master
} }
return Manager->IsMaster() || !Manager->IsSlave(); return Manager->IsPrimary() || !Manager->IsSecondary();
#else #else
return true; return true;
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment