Skip to content

Commit 02ee89f

Browse files
Joe-Abrahamaditi-pandit
authored andcommitted
[native] Remove velox properties from ContainerQueryRunner
1 parent 7b06b7b commit 02ee89f

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

presto-native-execution/src/test/java/com/facebook/presto/nativeworker/ContainerQueryRunner.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,6 @@ private GenericContainer<?> createNativeWorker(int port, String nodeId)
151151
ContainerQueryRunnerUtils.createNativeWorkerTpchProperties(nodeId);
152152
ContainerQueryRunnerUtils.createNativeWorkerEntryPointScript(nodeId);
153153
ContainerQueryRunnerUtils.createNativeWorkerNodeProperties(nodeId);
154-
ContainerQueryRunnerUtils.createNativeWorkerVeloxProperties(nodeId);
155154
return new GenericContainer<>(PRESTO_WORKER_IMAGE)
156155
.withExposedPorts(port)
157156
.withNetwork(network)

presto-native-execution/src/test/java/com/facebook/presto/nativeworker/ContainerQueryRunnerUtils.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -159,14 +159,6 @@ public static void createNativeWorkerNodeProperties(String nodeId)
159159
createPropertiesFile("testcontainers/" + nodeId + "/etc/node.properties", properties);
160160
}
161161

162-
public static void createNativeWorkerVeloxProperties(String nodeId)
163-
throws IOException
164-
{
165-
Properties properties = new Properties();
166-
properties.setProperty("mutable-config", "true");
167-
createPropertiesFile("testcontainers/" + nodeId + "/etc/velox.properties", properties);
168-
}
169-
170162
public static void createCoordinatorEntryPointScript()
171163
throws IOException
172164
{

0 commit comments

Comments
 (0)