1
0
forked from extern/smegmesh

Unit testing the automerge library and lib functions

This commit is contained in:
Tim Beatham
2023-11-05 12:08:20 +00:00
parent 76dda2cf6f
commit bb07d35dcb
6 changed files with 563 additions and 14 deletions

View File

@ -39,7 +39,10 @@ func (s *TimeStampSchedulerImpl) Run() error {
}
func NewTimestampScheduler(ctrlServer *ctrlserver.MeshCtrlServer) TimestampScheduler {
return &TimeStampSchedulerImpl{meshManager: ctrlServer.MeshManager, updateRate: ctrlServer.Conf.KeepAliveRate}
return &TimeStampSchedulerImpl{
meshManager: ctrlServer.MeshManager,
updateRate: ctrlServer.Conf.KeepAliveRate,
}
}
func (s *TimeStampSchedulerImpl) Stop() error {