From dd6e2523731bd829e3df5658bbb2ba8505346a54 Mon Sep 17 00:00:00 2001 From: Mark DePristo Date: Wed, 12 Jun 2013 17:47:27 -0400 Subject: [PATCH] GATKRunReport no longer tries to use the Broad filesystem destination, rather it goes unconditionally to S3 --- .../org/broadinstitute/sting/gatk/phonehome/GATKRunReport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/java/src/org/broadinstitute/sting/gatk/phonehome/GATKRunReport.java b/public/java/src/org/broadinstitute/sting/gatk/phonehome/GATKRunReport.java index de84809bd..9704454c9 100644 --- a/public/java/src/org/broadinstitute/sting/gatk/phonehome/GATKRunReport.java +++ b/public/java/src/org/broadinstitute/sting/gatk/phonehome/GATKRunReport.java @@ -419,7 +419,7 @@ public class GATKRunReport { * @return true if and only if the common run report repository is available and online to receive reports */ private boolean repositoryIsOnline() { - return REPORT_SENTINEL.exists(); + return false; // REPORT_SENTINEL.exists(); }