Skip to content

Commit 4261783

Browse files
committed
Reduce rsync verbosity
1 parent 947b6a8 commit 4261783

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

SequenceAnalysis/api-src/org/labkey/api/sequenceanalysis/pipeline/ReferenceGenomeManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public void cacheGenomeLocally(ReferenceGenome genome, Logger log) throws Pipeli
9292

9393
//Note: neither source nor dest have trailing slashes, so the entire source (i.e '128', gets synced into a subdir of dest)
9494
new SimpleScriptWrapper(log).execute(Arrays.asList(
95-
"rsync", "-r", "-vi", "-a", "--delete", "--delete-excluded", "--no-owner", "--no-group", sourceDir.getPath(), localCacheDir.getPath()
95+
"rsync", "-r", "-a", "--delete", "--delete-excluded", "--no-owner", "--no-group", sourceDir.getPath(), localCacheDir.getPath()
9696
));
9797

9898
try

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/util/AbstractGenomicsDBImportHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ public void processFilesRemote(List<SequenceOutputFile> inputFiles, JobContext c
539539
ctx.getLogger().debug("Copying directory with rsync: " + sourceFolder.getPath());
540540
//NOTE: since neither path will end in slashes, rsync to the parent folder should result in the correct placement
541541
new SimpleScriptWrapper(ctx.getLogger()).execute(Arrays.asList(
542-
"rsync", "-r", "-vi", "-a", "--delete", "--delete-excluded", "--no-owner", "--no-group", sourceFolder.getPath(), destContigFolder.getParentFile().getPath()
542+
"rsync", "-r", "-a", "--delete", "--delete-excluded", "--no-owner", "--no-group", sourceFolder.getPath(), destContigFolder.getParentFile().getPath()
543543
));
544544
}
545545

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/util/GenotypeGVCFsWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ else if (f.isDirectory() && doneFile.exists())
198198
//NOTE: since neither path will end in slashes, rsync to the parent folder should result in the correct placement
199199
ctx.getLogger().debug("Copying directory with rsync: " + movedFile.getPath());
200200
new SimpleScriptWrapper(ctx.getLogger()).execute(Arrays.asList(
201-
"rsync", "-r", "-vi", "-a", "--delete", "--delete-excluded", "--no-owner", "--no-group", f.getPath(), movedFile.getParentFile().getPath()
201+
"rsync", "-r", "-a", "--delete", "--delete-excluded", "--no-owner", "--no-group", f.getPath(), movedFile.getParentFile().getPath()
202202
));
203203
}
204204

0 commit comments

Comments
 (0)