File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
model/src/main/java/oracle/kubernetes/weblogic/domain/model
main/java/oracle/kubernetes/operator
test/java/oracle/kubernetes/operator/helpers Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public class DomainSpec extends BaseConfiguration {
48
48
*/
49
49
@ Description (
50
50
"The folder for the WebLogic Domain. Not required."
51
- + " Defaults to /shared/domains/domains/domainUid if domainHomeInImage is false"
51
+ + " Defaults to /shared/domains/domains/domainUID if domainHomeInImage is false"
52
52
+ " Defaults to /u01/oracle/user_projects/domains/ if domainHomeInImage is true" )
53
53
private String domainHome ;
54
54
@@ -507,7 +507,7 @@ public String toString() {
507
507
ToStringBuilder builder =
508
508
new ToStringBuilder (this )
509
509
.appendSuper (super .toString ())
510
- .append ("domainUid " , domainUid )
510
+ .append ("domainUID " , domainUid )
511
511
.append ("domainHome" , domainHome )
512
512
.append ("domainHomeInImage" , domainHomeInImage )
513
513
.append ("serverStartPolicy" , serverStartPolicy )
Original file line number Diff line number Diff line change @@ -906,6 +906,6 @@ private int getLivenessProbePeriodSeconds(TuningParameters.PodTuning tuning) {
906
906
}
907
907
908
908
private boolean mockWls () {
909
- return Boolean .getBoolean ("mockWls " );
909
+ return Boolean .getBoolean ("mockWLS " );
910
910
}
911
911
}
Original file line number Diff line number Diff line change @@ -43,6 +43,6 @@ public void setDomainUid(String domainUid) {
43
43
44
44
@ Override
45
45
protected String propertiesToString () {
46
- return "domainUid =" + getDomainUid () + ", " + super .propertiesToString ();
46
+ return "domainUID =" + getDomainUid () + ", " + super .propertiesToString ();
47
47
}
48
48
}
Original file line number Diff line number Diff line change @@ -579,7 +579,7 @@ V1PersistentVolumeList createPersistentVolumeList() {
579
579
CallTestSupport .CannedResponse expectListPersistentVolume () {
580
580
return testSupport
581
581
.createCannedResponse ("listPersistentVolume" )
582
- .withLabelSelectors ("weblogic.domainUid =" + UID );
582
+ .withLabelSelectors ("weblogic.domainUID =" + UID );
583
583
}
584
584
585
585
@ Test
You can’t perform that action at this time.
0 commit comments