Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
matrix-media-repo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
matrix-media-repo
Commits
f110f849
Commit
f110f849
authored
5 years ago
by
Travis Ralston
Browse files
Options
Downloads
Patches
Plain Diff
Move stop and import channel update closures into more relevant places
parent
19c0b55b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cmd/media_repo/main.go
+1
-1
1 addition, 1 deletion
cmd/media_repo/main.go
controllers/data_controller/import_controller.go
+2
-1
2 additions, 1 deletion
controllers/data_controller/import_controller.go
with
3 additions
and
2 deletions
cmd/media_repo/main.go
+
1
−
1
View file @
f110f849
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
controllers/data_controller/import_controller.go
+
2
−
1
View file @
f110f849
...
...
@@ -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
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment