You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When bundle.commt() executes, it is not committing the value of a field at the time it was staged, rather it is using the working copy. I sure thought it was architected to copy the value from the working copy to the stage when the staging happened, but it is not doing that, it just uses the current working copy value.
In git terms, this is the scenario where you stage a file and then make more modifications to it. When you commit, it doesn't include modifications made after it was staged unless you stage the changes again.
Investigate and fix.
The text was updated successfully, but these errors were encountered:
When
bundle.commt()
executes, it is not committing the value of a field at the time it was staged, rather it is using the working copy. I sure thought it was architected to copy the value from the working copy to the stage when the staging happened, but it is not doing that, it just uses the current working copy value.In git terms, this is the scenario where you stage a file and then make more modifications to it. When you commit, it doesn't include modifications made after it was staged unless you stage the changes again.
Investigate and fix.
The text was updated successfully, but these errors were encountered: