Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
5712cee3
Commit
5712cee3
authored
Apr 04, 2023
by
Sebastian Stammler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
op-batcher: Shutdown pprof and metrics after main loop returns
parent
d0ee681f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
batch_submitter.go
op-batcher/batcher/batch_submitter.go
+5
-3
No files found.
op-batcher/batcher/batch_submitter.go
View file @
5712cee3
...
@@ -51,9 +51,10 @@ func Main(version string, cliCtx *cli.Context) error {
...
@@ -51,9 +51,10 @@ func Main(version string, cliCtx *cli.Context) error {
return
err
return
err
}
}
}
}
defer
batchSubmitter
.
StopIfRunning
(
context
.
Background
())
ctx
,
cancel
:=
context
.
WithCancel
(
context
.
Background
())
ctx
,
cancel
:=
context
.
WithCancel
(
context
.
Background
())
defer
cancel
()
// Stop pprof and metrics only after main loop returns
defer
batchSubmitter
.
StopIfRunning
(
context
.
Background
())
pprofConfig
:=
cfg
.
PprofConfig
pprofConfig
:=
cfg
.
PprofConfig
if
pprofConfig
.
Enabled
{
if
pprofConfig
.
Enabled
{
...
@@ -106,7 +107,8 @@ func Main(version string, cliCtx *cli.Context) error {
...
@@ -106,7 +107,8 @@ func Main(version string, cliCtx *cli.Context) error {
syscall
.
SIGQUIT
,
syscall
.
SIGQUIT
,
}
...
)
}
...
)
<-
interruptChannel
<-
interruptChannel
cancel
()
if
err
:=
server
.
Stop
();
err
!=
nil
{
_
=
server
.
Stop
()
l
.
Error
(
"Error shutting down http server: %w"
,
err
)
}
return
nil
return
nil
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment