File tree Expand file tree Collapse file tree
src/main/java/org/ohnlp/backbone/api/components/xlang/python Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3131 <parent >
3232 <groupId >org.ohnlp.backbone</groupId >
3333 <artifactId >backbone-parent</artifactId >
34- <version >3.0.12 </version >
34+ <version >3.0.13 </version >
3535 </parent >
3636
3737 <artifactId >api</artifactId >
Original file line number Diff line number Diff line change @@ -69,15 +69,12 @@ public void startBundle() {
6969 public void process (ProcessContext pc ) {
7070 // String => String since the requisite PTransform would have already handled conversion to/from JSON
7171 String input = pc .element ();
72- System .out .println ("ProxyParDo: Processing " + input );
7372 PythonRow inputRow = this .proxiedDoFn .python_row_from_json_string (input );
74- System .out .println ("Sending converted row to apply: " + inputRow .toString ());
7573 if (this .proxiedDoFn instanceof PythonOneToOneTransformDoFn ) {
7674 ((PythonOneToOneTransformDoFn )this .proxiedDoFn ).proxied_apply (inputRow ).forEach (r ->
7775 pc .output (this .proxiedDoFn .json_string_from_python_row (r )));
7876 } else if (this .proxiedDoFn instanceof PythonOneToManyTransformDoFn ) {
7977 ((PythonOneToManyTransformDoFn )this .proxiedDoFn ).proxied_apply (inputRow ).forEach (r -> {
80- System .out .println ("Received from apply: " + r .get_row ());
8178 pc .output (new TupleTag <>(r .get_tag ()), this .proxiedDoFn .json_string_from_python_row (r .get_row ()));
8279 });
8380 } else {
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >org.ohnlp.backbone</groupId >
99 <artifactId >backbone-parent</artifactId >
10- <version >3.0.12 </version >
10+ <version >3.0.13 </version >
1111 </parent >
1212
1313 <artifactId >core</artifactId >
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >org.ohnlp.backbone</groupId >
99 <artifactId >backbone-parent</artifactId >
10- <version >3.0.12 </version >
10+ <version >3.0.13 </version >
1111 </parent >
1212
1313 <artifactId >example-backbone-configs</artifactId >
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >org.ohnlp.backbone</groupId >
99 <artifactId >backbone-parent</artifactId >
10- <version >3.0.12 </version >
10+ <version >3.0.13 </version >
1111 </parent >
1212
1313 <groupId >org.ohnlp.backbone.io</groupId >
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >org.ohnlp.backbone</groupId >
99 <artifactId >backbone-parent</artifactId >
10- <version >3.0.12 </version >
10+ <version >3.0.13 </version >
1111 </parent >
1212
1313 <artifactId >plugin-manager</artifactId >
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >org.ohnlp.backbone</groupId >
99 <artifactId >backbone-parent</artifactId >
10- <version >3.0.12 </version >
10+ <version >3.0.13 </version >
1111 </parent >
1212
1313 <groupId >org.ohnlp.backbone.transforms</groupId >
Original file line number Diff line number Diff line change 66
77 <groupId >org.ohnlp.backbone</groupId >
88 <artifactId >backbone-parent</artifactId >
9- <version >3.0.12 </version >
9+ <version >3.0.13 </version >
1010
1111
1212 <properties >
You can’t perform that action at this time.
0 commit comments