(mgr *cbgt.Manager)
| 1001 | var runSourcePartitionSeqsOnce sync.Once |
| 1002 | |
| 1003 | func initNsServerCaching(mgr *cbgt.Manager) { |
| 1004 | runSourcePartitionSeqsOnce.Do(func() { |
| 1005 | go RunSourcePartitionSeqs(mgr.Options(), nil) |
| 1006 | go RunRecentInfoCache(mgr) |
| 1007 | }) |
| 1008 | } |
| 1009 | |
| 1010 | func GetSourcePartitionSeqs(sourceSpec SourceSpec) map[string]cbgt.UUIDSeq { |
| 1011 | mapSourcePartitionSeqsM.Lock() |
no test coverage detected