-
Notifications
You must be signed in to change notification settings - Fork 805
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
Refactor/adding mutable state builder tests iv #5769
Refactor/adding mutable state builder tests iv #5769
Conversation
…b.com:davidporter-id-au/cadence into refactor/adding-mutable-state-builder-tests-i
Codecov Report
Additional details and impacted files
... and 6 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
Pull Request Test Coverage Report for Build 018e2c5b-524c-4ca0-bf7a-1119f4e3b280Details
💛 - Coveralls |
tags = append(tags, tag.WorkflowRunID(e.executionInfo.RunID)) | ||
tags = append(tags, tag.WorkflowDomainID(e.executionInfo.DomainID)) | ||
e.logger.Info(msg, tags...) | ||
if e != nil && e.executionInfo != nil { |
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.
do we need these nil checks? If so let's check for nilness and terminate early.
if e == nil || e.executionInfo == nil {
return
}
// log with tags
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.
ops approved with comment but didn't notice auto merge is enabled :)
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.
ah, sorry about that, let me address in a follow up
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.
What changed?
assignEventIDToBufferedEvents
who's function it is is to increment the various counters and ensure that all buffered decision tasks have assigned IDs.Why?
How did you test it?
Potential risks
Release notes
Documentation Changes