We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
processCommitted
The solution should be simply replacing:
var cert availabilitypb.Cert if len(certData) > 0 { if err := proto.Unmarshal(certData, &cert); err != nil { return nil, fmt.Errorf("cannot unmarshal availability certificate: %w", err) } }
by
var cert availabilitypb.Cert if len(certData) > 0 { if err := proto.Unmarshal(certData, &cert); err != nil { return eventsOut, fmt.Errorf("cannot unmarshal availability certificate: %w", err) } }
But TBD. Also I am currently updating the module to use the DSL, hence making a DSL-compatible solution.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The solution should be simply replacing:
by
But TBD. Also I am currently updating the module to use the DSL, hence making a DSL-compatible solution.
The text was updated successfully, but these errors were encountered: