Skip to content

Commit 9aaef28

Browse files
junchuanwangJunchuan Wang
andauthored
Add stack trace in error message when starting TracevisServer (#305)
* Add stack trace in error message when starting TracevisServer Co-authored-by: Junchuan Wang <juncwang@juncwang-ld3.linkedin.biz>
1 parent 74875ed commit 9aaef28

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
version=5.1.2
1+
version=5.1.3
22
group=com.linkedin.parseq
33
org.gradle.parallel=true

subprojects/parseq-tracevis-server/src/main/java/com/linkedin/parseq/TracevisServerJarMain.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ public static void main(String[] args) throws Exception {
7272

7373
new TracevisHttpsServer(dotLocation, httpPort, base, base, Constants.DEFAULT_CACHE_SIZE, Constants.DEFAULT_TIMEOUT_MS, sslPort,
7474
keyStorePath, keyStorePassword, trustStorePath, trustStorePassword).start();
75-
} catch (IOException ex) {
76-
throw new IOException("Failed to find config profiles " + args[1] + "!");
75+
} catch (Exception ex) {
76+
throw new IOException("Failed to find config profiles " + args[1] + "!", ex);
7777
}
7878
}
7979

0 commit comments

Comments
 (0)