Skip to content

Commit

Permalink
Tentative fix for MID-3863: Error occurred during container wrapping,…
Browse files Browse the repository at this point in the history
… reason: An attempt to modify an immutable value of Resource_XYZ
  • Loading branch information
mederly committed Jun 5, 2017
1 parent 470f2c4 commit 70e1f60
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -188,7 +188,9 @@ public void revive(PrismContext prismContext) throws SchemaException {
if (this.prismContext == null) {
this.prismContext = prismContext;
}
recompute(prismContext);
if (!immutable) {
recompute(prismContext);
}
}

/**
Expand Down

0 comments on commit 70e1f60

Please sign in to comment.