()
| 127 | } |
| 128 | |
| 129 | func (u *upstream) IsInitialSyncing() bool { |
| 130 | u.initialSyncCompletedMutex.Lock() |
| 131 | defer u.initialSyncCompletedMutex.Unlock() |
| 132 | |
| 133 | return len(u.initialSyncChanges) > 0 || !u.initialSyncCompleted |
| 134 | } |
| 135 | |
| 136 | func (u *upstream) startPing(doneChan chan struct{}) { |
| 137 | go func() { |
no test coverage detected