Skip to content
Snippets Groups Projects
Commit f110f849 authored by Travis Ralston's avatar Travis Ralston
Browse files

Move stop and import channel update closures into more relevant places

parent 19c0b55b
No related branches found
No related tags found
No related merge requests found
......@@ -79,10 +79,10 @@ func main() {
// Set up a listener for SIGINT
stop := make(chan os.Signal)
defer close(stop)
signal.Notify(stop, os.Interrupt, os.Kill)
selfStop := false
go func() {
defer close(stop)
<-stop
selfStop = true
......
......@@ -54,7 +54,6 @@ func StartImport(data io.Reader, ctx rcontext.RequestContext) (*types.Background
// Start the import and send it its first update
updateChan := make(chan *importUpdate)
defer close(updateChan)
go doImport(updateChan, task.ID, importId, ctx)
openImports.Store(importId, updateChan)
updateChan <- &importUpdate{stop: false, fileMap: results}
......@@ -131,6 +130,8 @@ func processArchive(data io.Reader) (map[string]*bytes.Buffer, error) {
}
func doImport(updateChannel chan *importUpdate, taskId int, importId string, ctx rcontext.RequestContext) {
defer close(updateChannel)
// Use a new context in the goroutine
ctx.Context = context.Background()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment