What effect does adding context have to preexisting Changesets [that did not have context before]?

I have a few changesets that previous didnt have a context but we felt the need of adding context now… So if I update the previous changesets to have either of the context, will those changesets be reexecuted?

In other words… does adding context toi changeset … change the signature of the changeset and make it execute again ?

No, it does not affect changesets that have already been executed. It will just stop changesets that would have been executed from running on new database updates. The context is not part of the checksum, so even if you have runOnChange=“true” it will not execute


Nathan

Thank You Very much.