Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tweak ingest messaging and failure mode [VS-267] #7680

Merged
merged 6 commits into from
Feb 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/variantstore/wdl/GvsImportGenomes.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ task LoadData {
>>>
runtime {
docker: docker
maxRetries: 3
maxRetries: 1
memory: "3.75 GB"
disks: "local-disk 50 HDD"
preemptible: select_first([preemptible_tries, 5])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public void onTraversalStart() {
logger.info("Sample id " + sampleId + " was detected as already loaded, exiting successfully.");
System.exit(0);
} else if (state == LoadStatus.LoadState.PARTIAL) {
throw new GATKException("Sample Id " + sampleId + " has already been partially loaded!");
throw new GATKException("The loading for sample id " + sampleId + " into the _" + tableNumber + " table(s) was interrupted before it was able to complete successfully.");
}

}
Expand Down