GATKRunReport no longer tries to use the Broad filesystem destination, rather it goes unconditionally to S3

This commit is contained in:
Mark DePristo 2013-06-12 17:47:27 -04:00
parent c837d67b2f
commit dd6e252373
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();
}