Skip to content

Commit 6bed522

Browse files
committed
Remove debug output from Python Bridge
1 parent 9fdb510 commit 6bed522

8 files changed

Lines changed: 7 additions & 10 deletions

File tree

API/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
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>

API/src/main/java/org/ohnlp/backbone/api/components/xlang/python/PythonProxyDoFn.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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 {

Core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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>

Example-Backbone-Configs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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>

IO/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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>

Plugin-Manager/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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>

Transforms/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
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>

0 commit comments

Comments
 (0)