MCPcopy Index your code
hub / github.com/devspace-sh/devspace / startDownstream

Method startDownstream

pkg/devspace/sync/sync.go:268–275  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

266}
267
268func (s *Sync) startDownstream() {
269 defer s.Stop(nil)
270
271 err := s.downstream.mainLoop()
272 if err != nil {
273 s.Stop(errors.Wrap(err, "downstream"))
274 }
275}
276
277func (s *Sync) initialSync(onInitUploadDone chan struct{}, onInitDownloadDone chan struct{}) error {
278 initialSync := newInitialSyncer(&initialSyncOptions{

Callers 2

mainLoopMethod · 0.95
TestNormalSyncFunction · 0.80

Calls 2

StopMethod · 0.95
mainLoopMethod · 0.45

Tested by 1

TestNormalSyncFunction · 0.64