Skip to content

Commit 81bb1c1

Browse files
committed
merging changes
1 parent 8815d5f commit 81bb1c1

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

integration-tests/src/test/java/oracle/weblogic/domain/InitializeDomainOnPV.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2023, Oracle and/or its affiliates.
1+
// Copyright (c) 2023, 2025, Oracle and/or its affiliates.
22
// Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
package oracle.weblogic.domain;
@@ -57,7 +57,6 @@ public class InitializeDomainOnPV {
5757
+ "WebLogic Deployment Tool 'encryptModel' command. "
5858
+ "The secret must use the key 'passphrase' containing the actual passphrase for encryption.")
5959
public String wdtModelEncryptionPassphraseSecret;
60-
6160

6261
public PersistentVolume getPersistentVolume() {
6362
return persistentVolume;
@@ -129,7 +128,8 @@ public String toString() {
129128
.append("persistentVolume", persistentVolume)
130129
.append("persistentVolumeClaim", persistentVolumeClaim)
131130
.append("domain", domain)
132-
.append("waitForPvcToBind", waitForPvcToBind);
131+
.append("waitForPvcToBind", waitForPvcToBind)
132+
.append("wdtModelEncryptionPassphraseSecret", wdtModelEncryptionPassphraseSecret);
133133

134134
return builder.toString();
135135
}
@@ -140,7 +140,8 @@ public int hashCode() {
140140
.append(persistentVolume)
141141
.append(persistentVolumeClaim)
142142
.append(domain)
143-
.append(waitForPvcToBind);
143+
.append(waitForPvcToBind)
144+
.append(wdtModelEncryptionPassphraseSecret);
144145

145146
return builder.toHashCode();
146147
}

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItSystemResOverrides.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020, 2024, Oracle and/or its affiliates.
1+
// Copyright (c) 2020, 2025, Oracle and/or its affiliates.
22
// Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
package oracle.weblogic.kubernetes;

0 commit comments

Comments
 (0)