diff --git a/README.md b/README.md
index c60a5de..b550ff5 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ Add this dependency to your project's POM:
io.numaproj.numaflow
numaflow-java
- 0.7.2
+ 0.7.4
```
@@ -35,7 +35,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:
```groovy
-compile "io.numaproj.numaflow:numaflow-java:0.7.2"
+compile "io.numaproj.numaflow:numaflow-java:0.7.4"
```
### Build
diff --git a/examples/pom.xml b/examples/pom.xml
index d7dc707..990e102 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -17,7 +17,7 @@
io.numaproj.numaflow
numaflow-java
- 0.7.2
+ 0.7.4
diff --git a/pom.xml b/pom.xml
index e81cbf7..34441d7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
io.numaproj.numaflow
numaflow-java
- 0.7.3
+ 0.7.4
jar
numaflow-java
diff --git a/src/main/java/io/numaproj/numaflow/shared/GrpcServerUtils.java b/src/main/java/io/numaproj/numaflow/shared/GrpcServerUtils.java
index 8aa7fa2..fca9670 100644
--- a/src/main/java/io/numaproj/numaflow/shared/GrpcServerUtils.java
+++ b/src/main/java/io/numaproj/numaflow/shared/GrpcServerUtils.java
@@ -149,6 +149,8 @@ private void handleException(
var status = Status.UNKNOWN.withDescription(e.getMessage()).withCause(e);
var newStatus = Status.fromThrowable(status.asException());
serverCall.close(newStatus, headers);
+ e.printStackTrace();
+ System.exit(1);
}
};
}