Merge pull request #274 from broadinstitute/md_s3_only

GATKRunReport no longer tries to use the Broad filesystem destination, r...
This commit is contained in:
droazen 2013-06-13 11:32:31 -07:00
commit fb5143a590
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}