vesoft-inc / nebula-importer

Nebula Graph Importer with Go
Apache License 2.0
90 stars 60 forks source link

fix: panic send on closed channel in reader pkg #220

Closed veezhang closed 1 year ago

veezhang commented 1 year ago

fix: panic send on closed channel in reader pkg

The number of times statsMgr.StatsCh <- base.NewFileDoneStats(filename) has reached the number of readers, then <-statsMgr.DoneCh return, but not all readers have exited. So, it's need to wait for it exit.

veezhang commented 1 year ago

fix #219 #95