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
86967887
Commit
86967887
authored
4 years ago
by
Pierre Krieger
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Remove AwaitCanceled (#1375)
parent
151d73af
Branches
gh-readonly-queue/master/pr-3023-1417a0263da6e90d91a4e418e587c61e24e2a135
Branches containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
polkadot/network/Cargo.toml
+1
-1
1 addition, 1 deletion
polkadot/network/Cargo.toml
polkadot/network/src/protocol/mod.rs
+2
-24
2 additions, 24 deletions
polkadot/network/src/protocol/mod.rs
with
3 additions
and
25 deletions
polkadot/network/Cargo.toml
+
1
−
1
View file @
86967887
...
...
@@ -19,7 +19,7 @@ sc-network = { git = "https://github.com/paritytech/substrate", branch = "master
sc-network-gossip
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
}
futures
=
"0.3.
4
"
futures
=
"0.3.
5
"
log
=
"0.4.8"
exit-future
=
"0.2.0"
futures-timer
=
"2.0"
...
...
This diff is collapsed.
Click to expand it.
polkadot/network/src/protocol/mod.rs
+
2
−
24
View file @
86967887
...
...
@@ -404,28 +404,6 @@ struct ConsensusNetworkingInstance {
_drop_signal
:
exit_future
::
Signal
,
}
/// A utility future that resolves when the receiving end of a channel has hung up.
///
/// This is an `.await`-friendly interface around `poll_canceled`.
// TODO: remove in favor of https://github.com/rust-lang/futures-rs/pull/2092/
// once published.
#[must_use
=
"futures do nothing unless you `.await` or poll them"
]
#[derive(Debug)]
pub
struct
AwaitCanceled
<
'a
,
T
>
{
inner
:
&
'a
mut
oneshot
::
Sender
<
T
>
,
}
impl
<
T
>
Future
for
AwaitCanceled
<
'_
,
T
>
{
type
Output
=
();
fn
poll
(
mut
self
:
Pin
<&
mut
Self
>
,
cx
:
&
mut
futures
::
task
::
Context
<
'_
>
,
)
->
futures
::
task
::
Poll
<
()
>
{
self
.inner
.poll_canceled
(
cx
)
}
}
/// Protocol configuration.
#[derive(Default)]
pub
struct
Config
{
...
...
@@ -947,7 +925,7 @@ impl<Api, Sp, Gossip> Worker<Api, Sp, Gossip> where
self
.executor
.spawn
(
"polkadot-fetch-pov-block"
,
async
move
{
let
res
=
future
::
select
(
get_msg
,
AwaitCanceled
{
inner
:
&
mut
sender
}
)
.await
;
let
res
=
future
::
select
(
get_msg
,
sender
.cancellation
()
)
.await
;
if
let
Either
::
Left
((
pov_block
,
_
))
=
res
{
let
_
=
sender
.send
(
pov_block
);
}
...
...
@@ -981,7 +959,7 @@ impl<Api, Sp, Gossip> Worker<Api, Sp, Gossip> where
self
.executor
.spawn
(
"polkadot-fetch-erasure-chunk"
,
async
move
{
let
res
=
future
::
select
(
get_msg
,
AwaitCanceled
{
inner
:
&
mut
sender
}
)
.await
;
let
res
=
future
::
select
(
get_msg
,
sender
.cancellation
()
)
.await
;
if
let
Either
::
Left
((
chunk
,
_
))
=
res
{
let
_
=
sender
.send
(
chunk
);
}
...
...
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