Fix bug with member assignment order in PushReplication.
The groupCache was being used before it was set in the class. Fix the ordering of the assignment. Change-Id: I969c2c9e51934cc01e0b4983a7c884d8f88fb34f
This commit is contained in:
@@ -113,8 +113,8 @@ public class PushReplication implements ReplicationQueue {
|
|||||||
database = db;
|
database = db;
|
||||||
replicationUserFactory = ruf;
|
replicationUserFactory = ruf;
|
||||||
gitRepositoryManager = grm;
|
gitRepositoryManager = grm;
|
||||||
configs = allConfigs(site);
|
|
||||||
groupCache = gc;
|
groupCache = gc;
|
||||||
|
configs = allConfigs(site);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user