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
User-A open System config (sequence Number= 1000)
User-B creates a new Workitem (sequence Number= 1001)
User-A saves System config
NOW again sequence Number= 1000 !
A optimisticeLock Exception is expected but did not occur
Solution:
The reason for this behaviour is that the ConfigService is a Singleton. This means that the VersionID is correctly updated from the internal perspective but not provided after an update.
But we need to avoid that in this situation for example the Sequencenumber can be overwritten. Therefore we need to update the $version
The text was updated successfully, but these errors were encountered:
Scenario:
A optimisticeLock Exception is expected but did not occur
Solution:
The reason for this behaviour is that the ConfigService is a Singleton. This means that the VersionID is correctly updated from the internal perspective but not provided after an update.
But we need to avoid that in this situation for example the Sequencenumber can be overwritten. Therefore we need to update the $version
The text was updated successfully, but these errors were encountered: