-
Notifications
You must be signed in to change notification settings - Fork 55
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
Implementation of UpdateJobTimeoutCommand #682
Implementation of UpdateJobTimeoutCommand #682
Conversation
feb37b4
to
f59c5e0
Compare
f59c5e0
to
7b69dc7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome! Thanks for your great contribution @LennartKleymann 🚀
There are only smaller things we have to add/do and then we can merge it. Actually, it is just to add a separate test class for the command, and clarify the timeout conversion. :)
Thanks for your time and effort!
yield return new TestCaseData( | ||
new UpdateJobTimeoutRequest() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍🏼 Great that you added here an test case as well.
As this is only for the SendWithRetry test right now we also need some more tests for the happy path to check the expected requests, and responses. Like we do with the other commands. Take as example this https://github.com/camunda-community-hub/zeebe-client-csharp/blob/main/Client.UnitTests/UpdateRetriesTest.cs
What we also need is to add
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added tests to check expected requests
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great! Thank you for your efforts 👍
Added a command for updating the timeout of a job
closes #681