Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix: return the context error during event subscribe #2742

Conversation

fuweid
Copy link
Member

@fuweid fuweid commented Oct 24, 2018

Signed-off-by: Wei Fu [email protected]

NOTE: This is edge case raised in the testing. But it is hard to reproduce. That is why I don't add case for this.

@fuweid fuweid force-pushed the bugfix_return_context_cancel_error_during_subcribe branch from 9aecb11 to 15a761c Compare October 24, 2018 11:26
@codecov-io
Copy link

codecov-io commented Oct 24, 2018

Codecov Report

Merging #2742 into master will decrease coverage by 3.67%.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff             @@
##           master    #2742      +/-   ##
==========================================
- Coverage   47.41%   43.74%   -3.68%     
==========================================
  Files          91      100       +9     
  Lines        8410    10728    +2318     
==========================================
+ Hits         3988     4693     +705     
- Misses       3699     5305    +1606     
- Partials      723      730       +7
Flag Coverage Δ
#linux 47.41% <ø> (ø) ⬆️
#windows 40.9% <ø> (?)
Impacted Files Coverage Δ
snapshots/native/native.go 43.3% <0%> (-10%) ⬇️
metadata/snapshot.go 45.8% <0%> (-8.96%) ⬇️
archive/tar.go 43.13% <0%> (-6.87%) ⬇️
metadata/containers.go 47.97% <0%> (-6.62%) ⬇️
content/local/writer.go 57.84% <0%> (-6.36%) ⬇️
content/local/store.go 48.51% <0%> (-5.03%) ⬇️
remotes/docker/resolver.go 58.36% <0%> (-4.99%) ⬇️
archive/tar_opts.go 28.57% <0%> (-4.77%) ⬇️
archive/compression/compression.go 58.69% <0%> (-4.7%) ⬇️
metadata/images.go 58.46% <0%> (-4.7%) ⬇️
... and 56 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 9fb7eed...15a761c. Read the comment docs.

@crosbymichael
Copy link
Member

LGTM

@dmcgowan dmcgowan added this to the 1.2 milestone Oct 24, 2018
@@ -110,6 +110,9 @@ func (e *eventRemote) Subscribe(ctx context.Context, filters ...string) (ch <-ch
Event: ev.Event,
}:
case <-ctx.Done():
if cerr := ctx.Err(); cerr != context.Canceled {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Needs to check the cause: errors.Cause(cerr) == context.Canceled).

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@stevvooe when the ctx.Done() is closed, the ctx.Err() will explaining why, canceled or deadline passed. It's no need to use pkg/errors or check nil here.

@@ -110,6 +110,9 @@ func (e *eventRemote) Subscribe(ctx context.Context, filters ...string) (ch <-ch
Event: ev.Event,
}:
case <-ctx.Done():
if cerr := ctx.Err(); cerr != context.Canceled {
errq <- cerr
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to check against nil to avoid a write of a nil error. Should probably be in the condition above.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 why aren't we checking for a nil error?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cpuguy83 according to the doc https://golang.org/pkg/context/#Context, when the ctx.Done() has been closed, the ctx.Err() always returns the non-nil to explain why it is done. maybe it's caused by canceled or deadline exceeded.

It depends on the implementation of context. Add nil check is good here if there is some bug in context. But for now, I think it's ok.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok I see the full context of this now (haha).

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LoL

@fuweid
Copy link
Member Author

fuweid commented Oct 24, 2018

@dmcgowan
Copy link
Member

I think we can trust Go to respect their interface for Done() and Err(), if they change that in the future we will have to update multiple places in the code anyway.

LGTM

@dmcgowan dmcgowan merged commit c20c569 into containerd:master Oct 24, 2018
@fuweid fuweid deleted the bugfix_return_context_cancel_error_during_subcribe branch October 25, 2018 01:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants