Skip to content

Commit

Permalink
SHIBUI-1992
Browse files Browse the repository at this point in the history
Removed defaults:
metadataresolver.doInitialization:false
  • Loading branch information
chasegawa committed Jul 27, 2021
1 parent 0f6d2da commit be08cbb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public class MetadataResolver extends AbstractAuditable {

private Boolean satisfyAnyPredicates;

private Boolean doInitialization = true;
private Boolean doInitialization;

@JsonIgnore
private Long versionModifiedTimestamp;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,7 @@ class TestObjectGenerator {
}
// Changes in MetadataResolver (removing defaults), so adding back those settings here.
it.enabled = Boolean.TRUE
it.doInitialization = Boolean.TRUE
it
}
}
Expand All @@ -547,6 +548,7 @@ class TestObjectGenerator {
}
// Changes in MetadataResolver (removing defaults), so adding back those settings here.
it.enabled = Boolean.TRUE
it.doInitialization = Boolean.TRUE
it
}
}
Expand All @@ -562,6 +564,7 @@ class TestObjectGenerator {
}
// Changes in MetadataResolver (removing defaults), so adding back those settings here.
it.enabled = Boolean.TRUE
it.doInitialization = Boolean.TRUE
it
}
}
Expand All @@ -581,6 +584,7 @@ class TestObjectGenerator {
}
// Changes in MetadataResolver (removing defaults), so adding back those settings here.
it.enabled = Boolean.TRUE
it.doInitialization = Boolean.TRUE
it
}
}
Expand All @@ -599,6 +603,7 @@ class TestObjectGenerator {
}
// Changes in MetadataResolver (removing defaults), so adding back those settings here.
it.enabled = Boolean.TRUE
it.doInitialization = Boolean.TRUE
it
}
}
Expand Down

0 comments on commit be08cbb

Please sign in to comment.