Skip to content
Snippets Groups Projects
Commit 711a7753 authored by Kipp Cannon's avatar Kipp Cannon
Browse files

gstlal_inspiral: locally-cached frame files not being deleted

the delete code was inside a conditional keyed to --verbose command line option.
parent 0d591f0f
No related branches found
No related tags found
No related merge requests found
......@@ -587,11 +587,13 @@ for svd_bank, output_filename, likelihood_file in zip(svd_banks, options.output,
# Cleanup local caches
#
if options.local_frame_caching:
if options.verbose:
print >> sys.stderr, "deleting temporary cache file ", detectors.frame_cache
os.remove(detectors.frame_cache)
del detectors.local_cache_list
print >>sys.stderr, "deleting temporary cache file ", detectors.frame_cache
os.remove(detectors.frame_cache)
del detectors.local_cache_list
#
# done. online pipeline always ends with an error code so that dagman does
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment