-
Notifications
You must be signed in to change notification settings - Fork 96
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
Add pagination to get_workflow_history #290
Conversation
lib/temporal/client.rb
Outdated
|
||
Workflow::History.new(history_response.history.events) | ||
Workflow::History.new(response.history.events) |
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.
Did you mean to create the workflow history object from the events
property? Creating it from response.history.events
is incorrect.
Hey! Just checking in on this PR. @DeRauk, @cduanfigma addressed the comments you left. Is there anything else we should do to get this merged? |
@cj-cb could you take a look at this one? |
@cduanfigma Thank you for the PR. Can you please resolve the conflicts? |
@cj-cb conflicts are resolved! |
@cduanfigma Looks like tests are failing. Do you mind pulling in the latest in master again to get a fix? |
Uses pagination in
get_workflow_history
so that it fetches the complete history result.Review without whitespace.
Fixes #289