-
Notifications
You must be signed in to change notification settings - Fork 89
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
SALTO-7433: fixing default value for contexts #7246
Conversation
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.
looks good!
had some comments
packages/jira-adapter/src/filters/fields/context_options_deployment_filter.ts
Outdated
Show resolved
Hide resolved
} | ||
const optionsIdByElemId: Record<string, string> = Object.fromEntries( | ||
addedOptionInstances.map(option => [option.elemID.getFullName(), option.value.id]), | ||
) |
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.
IIUC if the option deployment failed, this option.value.id
will be undefined
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.
Moved the function, should not be called in failures
ccd9dfa
to
97674a1
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.
looks great, has some comments
packages/jira-adapter/src/filters/fields/context_options_deployment_filter.ts
Outdated
Show resolved
Hide resolved
packages/jira-adapter/src/filters/fields/context_options_deployment_filter.ts
Outdated
Show resolved
Hide resolved
packages/jira-adapter/src/filters/fields/context_options_deployment_filter.ts
Outdated
Show resolved
Hide resolved
packages/jira-adapter/src/filters/fields/context_options_deployment_filter.ts
Outdated
Show resolved
Hide resolved
packages/jira-adapter/src/filters/fields/context_options_deployment_filter.ts
Outdated
Show resolved
Hide resolved
.map(path => _.get(defaultValues, path)) | ||
.filter(isReferenceExpression) | ||
.find( | ||
value => value.value.id == null, // undefined or null |
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 wonder in which case it can be null?
usually in the oss we do not check for nulls
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 saw that in the values sent to the service and did not want to take a risk. It is possible it was a Json translation
|
||
const contextChange = getContextChange(leftoverChanges, contextId) | ||
if (contextChange === undefined) return | ||
const optionReferenceWithoutId = findOptionWithoutId(contextChange) |
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.
it is possible that some options will be without id, then our message wont be accurate. Im not sure we should change this.
and IMO it worth to add a comment like:
a single option without id is enough for a context failure
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 that stating one is enough, I do not think we should state all options that failed
packages/jira-adapter/src/filters/fields/context_options_deployment_filter.ts
Outdated
Show resolved
Hide resolved
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.
💯
Fixed default values- the value of the references for options in the default value was not updated in add
Tests will follow
Release Notes:
Jira Adapter:
User Notifications:
None