You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdks/java/extensions/python/src/main/java/org/apache/beam/sdk/extensions/python/PythonExternalTransform.java
+34Lines changed: 34 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,7 @@ public class PythonExternalTransform<InputT extends PInput, OutputT extends POut
81
81
82
82
privateStringexpansionService;
83
83
privateList<String> extraPackages;
84
+
privateList<String> filesToStage;
84
85
85
86
// We preseve the order here since Schema's care about order of fields but the order will not
86
87
// matter when applying kwargs at the Python side.
Copy file name to clipboardExpand all lines: sdks/java/extensions/python/src/test/java/org/apache/beam/sdk/extensions/python/PythonExternalTransformTest.java
+36Lines changed: 36 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -84,6 +84,17 @@ public void pythonTransformWithDependencies() {
0 commit comments