This is an automated email from the ASF dual-hosted git repository.
rdhabalia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new 55c8dc0 Set empty response to complete grpc txn (#2225)
55c8dc0 is described below
commit 55c8dc0519608a755509cdc445496140b38d98b3
Author: Rajan Dhabalia <[email protected]>
AuthorDate: Wed Jul 25 13:07:52 2018 -0700
Set empty response to complete grpc txn (#2225)
---
.../java/org/apache/pulsar/functions/runtime/JavaInstanceMain.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/pulsar-functions/runtime/src/main/java/org/apache/pulsar/functions/runtime/JavaInstanceMain.java
b/pulsar-functions/runtime/src/main/java/org/apache/pulsar/functions/runtime/JavaInstanceMain.java
index 0c10fdb..966740d 100644
---
a/pulsar-functions/runtime/src/main/java/org/apache/pulsar/functions/runtime/JavaInstanceMain.java
+++
b/pulsar-functions/runtime/src/main/java/org/apache/pulsar/functions/runtime/JavaInstanceMain.java
@@ -370,9 +370,10 @@ public class JavaInstanceMain implements AutoCloseable {
if (runtime != null) {
try {
runtime.resetMetrics().get();
+
responseObserver.onNext(com.google.protobuf.Empty.getDefaultInstance());
responseObserver.onCompleted();
} catch (InterruptedException | ExecutionException e) {
- log.error("Exception in JavaInstance doing
getAndResetMetrics", e);
+ log.error("Exception in JavaInstance doing resetMetrics",
e);
throw new RuntimeException(e);
}
}