Skip to content

Commit 4b35c8d

Browse files
committed
[ZEPPELIN-18] Running pyspark without deploying python libraries to every yarn node
- Dummy for trigger
1 parent 682986e commit 4b35c8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spark/src/main/java/org/apache/zeppelin/spark/SparkInterpreter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ public SparkContext createSparkContext() {
278278
for (String lib : pythonLibs) {
279279
File libFile = new File(zeppelinPythonLibPath, lib);
280280
if (libFile.exists()) {
281-
pythonLibUris.add(libFile.toURI().toString());
281+
pythonLibUris.add(libFile.toURI().toString());
282282
}
283283
}
284284
pythonLibUris.trimToSize();

0 commit comments

Comments
 (0)