diff options
author | tlatorre <tlatorre@uchicago.edu> | 2020-06-02 15:33:47 -0500 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2020-06-02 15:33:47 -0500 |
commit | 9c8b5cd9ef0a359e617bb41488c24c414acce0a8 (patch) | |
tree | c081725283b9f815c9e1f75d4e31c66ff45296fb /utils/submit-grid-jobs | |
parent | 826525e01c95a8f144de304a2f973d804fcc0b35 (diff) | |
download | sddm-9c8b5cd9ef0a359e617bb41488c24c414acce0a8.tar.gz sddm-9c8b5cd9ef0a359e617bb41488c24c414acce0a8.tar.bz2 sddm-9c8b5cd9ef0a359e617bb41488c24c414acce0a8.zip |
increase max file size to 500 MB
Diffstat (limited to 'utils/submit-grid-jobs')
-rwxr-xr-x | utils/submit-grid-jobs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/submit-grid-jobs b/utils/submit-grid-jobs index 29f7d9c..0069162 100755 --- a/utils/submit-grid-jobs +++ b/utils/submit-grid-jobs @@ -541,7 +541,7 @@ if __name__ == '__main__': log.notice("Analyzing file %s" % filename) filename = abspath(filename) - if os.path.getsize(filename)/1e6 > 100: + if os.path.getsize(filename)/1e6 > 500: log.warn("Skipping %s because the file size is %i MB!" % (filename, os.path.getsize(filename)/1e6)) continue |