Thanks to visit codestin.com
Credit goes to github.com

Skip to content

fix: Check if start is nil before consuming in echo provisioner #2686

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

Merged
merged 1 commit into from
Jun 27, 2022

Conversation

kylecarbs
Copy link
Member

@kylecarbs kylecarbs requested a review from mafredri June 27, 2022 14:28
@kylecarbs kylecarbs self-assigned this Jun 27, 2022
@@ -82,6 +82,10 @@ func (e *echo) Provision(stream proto.DRPCProvisioner_ProvisionStream) error {
return err
}
request := msg.GetStart()
if request == nil {
// A cancel could occur here!
return nil
Copy link
Member

@mafredri mafredri Jun 27, 2022

Choose a reason for hiding this comment

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

Is the cancellation inferable via context, and if so, should we consider doing something like this here?

select {
case <-stream.Context().Done():
	return stream.Context().Err()
default:
	return errors.New("")
}

Copy link
Member Author

Choose a reason for hiding this comment

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

Nah, the cancelation isn't sent over the context at all. This should actually be fine because messages are handled synchronously, this one was just out of order!

@kylecarbs kylecarbs merged commit 33a04f6 into main Jun 27, 2022
@kylecarbs kylecarbs deleted the echofake branch June 27, 2022 14:57
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.

2 participants