Skip to content
This repository was archived by the owner on Sep 12, 2024. It is now read-only.

Commit b31ee71

Browse files
committed
check on all dataset size separately
1 parent 1975770 commit b31ee71

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

Unified/checkor.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1223,6 +1223,14 @@ def upward( ns ):
12231223
assistance_tags.add('bigoutput')
12241224
custodial = None
12251225

1226+
if custodial:
1227+
for output in out_worth_checking:
1228+
if out_worth_checking[output] > tape_size_limit:
1229+
wfi.sendLog('checkor',"%s output size (%s TB) is too large for the limit set (%s TB)"%( output, out_worth_checking[output], tape_size_limit))
1230+
assistance_tags.add('bigoutput')
1231+
custodial = None
1232+
1233+
12261234
if not custodial:
12271235
print "cannot find a custodial for",wfo.name
12281236
wfi.sendLog('checkor',"cannot find a custodial for %s probably because of the total output size %d"%( wfo.name, size_worth_checking))

0 commit comments

Comments
 (0)