Skip to content

Commit 76fa361

Browse files
committed
undo some small changes
1 parent 77b2c0d commit 76fa361

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

integration-tests/src/test/java/oracle/kubernetes/operator/BaseTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ public static void initialize(String appPropsFile) throws Exception {
189189
if (!JENKINS && !SHARED_CLUSTER) {
190190
logger.info("Creating PVROOT " + pvRoot);
191191
Files.createDirectories(Paths.get(pvRoot));
192-
ExecResult result = ExecCommand.exec("chmod -R 777 " + pvRoot);
192+
ExecResult result = ExecCommand.exec("chmod 777 " + pvRoot);
193193
if (result.exitValue() != 0) {
194194
throw new RuntimeException(
195195
"FAILURE: Couldn't change permissions for PVROOT " + result.stderr());

integration-tests/src/test/java/oracle/kubernetes/operator/ITOperator.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ public static void staticUnPrepare() throws Exception {
7474
*/
7575
@Test
7676
public void testDomainOnPVUsingWLST() throws Exception {
77-
7877
String testMethodName = new Object() {}.getClass().getEnclosingMethod().getName();
7978
logTestBegin(testMethodName);
8079
logger.info("Creating Operator & waiting for the script to complete execution");

integration-tests/src/test/java/oracle/kubernetes/operator/utils/PersistentVolume.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,6 @@ public PersistentVolume(String dirPath, Map pvMap) throws Exception {
2828
+ dirPath
2929
+ "\"";
3030

31-
/* BaseTest.getProjectRoot()
32-
+ "/src/integration-tests/bash/krun.sh -m "
33-
+ BaseTest.getPvRoot()
34-
+ ":/scratch -t 60 -c \"mkdir -p "
35-
+ dirPath
36-
+ "\""; */
3731
ExecResult result = ExecCommand.exec(cmd);
3832
if (result.exitValue() != 0) {
3933
throw new RuntimeException(

0 commit comments

Comments
 (0)