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
Remote Err() is simply a getter.
Err()
The text was updated successfully, but these errors were encountered:
Hi, I’d like to work on this issue as a first-time contributor—could you confirm if it’s available and share any guidelines?
Sorry, something went wrong.
Hi, thanks for the interest. This still hasnt been implemented, here are the guidelines:
type RespErr struct {err error}
func (s *Server) RemoteErr( _ *rpc2.Client, args *Empty, resp *RespErr, ) error {
callFailsafe
Add()
Worker.err
func TestErr(t *testing.T) { // config ctx, cancel := context.WithCancel(context.Background()) defer cancel() source := utils.NewRelsRpcWorker(t, nil) _, _, s, c := NewTest(t, ctx, source, nil, nil, nil, false) // test source.AddErr(errors.New("test")) // assert // c.Worker.Err() // c.Worker.IsErr() }
Feel free to ask questions. It will be interesting to see if errors.Is() will work out of the box...
errors.Is()
ok thank you i will work on this
No branches or pull requests
Remote
Err()
is simply a getter.The text was updated successfully, but these errors were encountered: