Skip to content

Commit

Permalink
no port in log behavior changed to not throw a build breaking error
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanHershey committed Aug 25, 2024
1 parent 87ba495 commit 06859da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/femr/util/translation/TranslationServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static int getPortFromLog(String logPath, Boolean wait){
}
catch(Exception e){
System.out.println("Problem retrieving port number from log");
throw new RuntimeException(e);
return portNumber;
}
return portNumber;
}
Expand Down

0 comments on commit 06859da

Please sign in to comment.