Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
cfmcgrady committed Jul 28, 2023
1 parent 3e64402 commit b09006c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ public class DataPushQueueSuitJ {

@BeforeClass
public static void beforeAll() {
tempDir = Utils.createTempDir(System.getProperty("java.io.tmpdir"), "celeborn_test");
tempDir =
Utils.createTempDir(
System.getProperty("java.io.tmpdir"), UUID.randomUUID().toString().replaceAll("-", ""));
System.out.println("temp dir: " + tempDir.toPath());
}

Expand Down
3 changes: 1 addition & 2 deletions project/CelebornBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,7 @@ object CelebornCommonSettings {
"--add-opens=java.base/sun.nio.cs=ALL-UNNAMED",
"--add-opens=java.base/sun.security.action=ALL-UNNAMED",
"--add-opens=java.base/sun.util.calendar=ALL-UNNAMED",
"-Dio.netty.tryReflectionSetAccessible=true",
s"-Djava.io.tmpdir=${target.value}/tmp"
"-Dio.netty.tryReflectionSetAccessible=true"
),

testOptions += Tests.Argument("-oF"),
Expand Down

0 comments on commit b09006c

Please sign in to comment.