Reputation: 3729
Are there any issues to worry about before raising the VOB feature level? Can it be easily reverted if it causes issues? Is it even anything to worry about?
Upvotes: 1
Views: 383
Reputation: 1323583
As mentioned by "About Feature Levels and ClearCase":
VOB feature levels should be raised only after all client hosts have been upgraded to the corresponding ClearCase version.
So there is a condition to raise it.
Feature levels can only be raised to a higher feature level and cannot be lowered.
So you cannot revert that operation.
This is using cleartool chflevel
and can be done even just for one vob.
It prevents the use of new features which are not understood by client hosts with an older ClearCase version installed.
This kind of operation is generally done in the context of a ClearCase server upgrade, which means you backup everything first.
That is one way to -- not revert a chflevel
but restore a content: you overwrite a vob with its backup, but that means you are rolling back the all ClearCase upgrade anyway.
Make sure to upgrade replica if your vobs are multi-site'd:
ct lsreplica
# if you see a replica named 'original':
sudo cleartool chflevel -replica 5 replica:original@/vobs/yourVob
sudo cleartool chflevel -force -family 5 vob:/vobs/yourVob
Upvotes: 3