Skip to content
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

Merged
merged 6 commits into from
Feb 16, 2025

Conversation

IdoZakk
Copy link
Contributor

@IdoZakk IdoZakk commented Feb 11, 2025

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:

  • Fixed a bug with deployment of default values for field contexts

User Notifications:
None

Copy link
Contributor

@shayc331 shayc331 left a 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

}
const optionsIdByElemId: Record<string, string> = Object.fromEntries(
addedOptionInstances.map(option => [option.elemID.getFullName(), option.value.id]),
)
Copy link
Contributor

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

Copy link
Contributor Author

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

@IdoZakk IdoZakk requested a review from shayc331 February 13, 2025 09:40
@IdoZakk IdoZakk force-pushed the 7433DefaultValuesCascade branch from ccd9dfa to 97674a1 Compare February 13, 2025 14:57
Copy link
Contributor

@shayc331 shayc331 left a 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

.map(path => _.get(defaultValues, path))
.filter(isReferenceExpression)
.find(
value => value.value.id == null, // undefined or null
Copy link
Contributor

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

Copy link
Contributor Author

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)
Copy link
Contributor

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

Copy link
Contributor Author

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

@IdoZakk IdoZakk requested a review from shayc331 February 13, 2025 20:02
@coveralls
Copy link

Coverage Status

coverage: 93.643%. first build
when pulling 748d8fa on IdoZakk:7433DefaultValuesCascade
into adbde59 on salto-io:main.

Copy link
Contributor

@shayc331 shayc331 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💯

@IdoZakk IdoZakk merged commit ed50a5b into salto-io:main Feb 16, 2025
55 checks passed
@IdoZakk IdoZakk deleted the 7433DefaultValuesCascade branch February 16, 2025 09:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants