-
Notifications
You must be signed in to change notification settings - Fork 863
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
functional tests testing queries + nexus tasks with versioning-3 #7015
base: main
Are you sure you want to change the base?
Conversation
@@ -361,5 +361,6 @@ func MutableStateToGetResponse( | |||
InheritedBuildId: mutableState.GetInheritedBuildId(), | |||
MostRecentWorkerVersionStamp: mostRecentWorkerVersionStamp, | |||
TransitionHistory: mutableState.GetExecutionInfo().TransitionHistory, | |||
VersioningInfo: mutableState.GetExecutionInfo().VersioningInfo, |
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 think we might have forgotten to add this while making the versioning-3 changes - this is required for query tasks
@@ -239,9 +247,6 @@ func (p *workflowTaskPoller) pollTask( | |||
} | |||
|
|||
events = history.Events | |||
if len(events) == 0 { |
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.
This required to be removed - I found out that sticky queries do not get sent "partial" histories and are sent empty histories
What changed?
taskPoller
to now consider query and nexus tasksWhy?
How did you test it?
Potential risks
Documentation
Is hotfix candidate?
No