diff --git a/java/src/org/broadinstitute/sting/gatk/phonehome/GATKRunReport.java b/java/src/org/broadinstitute/sting/gatk/phonehome/GATKRunReport.java index 223242966..388aac1ce 100644 --- a/java/src/org/broadinstitute/sting/gatk/phonehome/GATKRunReport.java +++ b/java/src/org/broadinstitute/sting/gatk/phonehome/GATKRunReport.java @@ -232,13 +232,14 @@ public class GATKRunReport { * @return */ private String resolveHostname() { - try { - return InetAddress.getLocalHost().getCanonicalHostName(); - } - catch (java.net.UnknownHostException uhe) { // [beware typo in code sample -dmw] - return "unresolvable"; - // handle exception - } + return "unknown"; +// try { +// return InetAddress.getLocalHost().getCanonicalHostName(); +// } +// catch (java.net.UnknownHostException uhe) { // [beware typo in code sample -dmw] +// return "unresolvable"; +// // handle exception +// } } /**