Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
polkadot-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
parity
Mirrored projects
polkadot-sdk
Commits
23d7f459
Commit
23d7f459
authored
6 years ago
by
André Silva
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
network: guard validation network future under exit signal (#167)
parent
30472a18
Branches
Branches containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
polkadot/network/src/validation.rs
+2
-1
2 additions, 1 deletion
polkadot/network/src/validation.rs
with
2 additions
and
1 deletion
polkadot/network/src/validation.rs
+
2
−
1
View file @
23d7f459
...
...
@@ -232,6 +232,7 @@ impl<P, E, N, T> ParachainNetwork for ValidationNetwork<P, E, N, T> where
let
table_router_clone
=
table_router
.clone
();
let
executor
=
self
.executor
.clone
();
let
exit
=
self
.exit
.clone
();
// spin up a task in the background that processes all incoming statements
// TODO: propagate statements on a timer?
...
...
@@ -248,7 +249,7 @@ impl<P, E, N, T> ParachainNetwork for ValidationNetwork<P, E, N, T> where
table_router
:
table_router_clone
,
};
executor
.spawn
(
process_task
);
executor
.spawn
(
process_task
.select
(
exit
)
.then
(|
_
|
Ok
(()))
);
});
table_router
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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