ESMCI / cime

Common Infrastructure for Modeling the Earth
http://esmci.github.io/cime
Other
161 stars 206 forks source link

If chksum is off, don't try to download_checksum_file #4561

Closed jgfouca closed 8 months ago

jgfouca commented 8 months ago

I think

            if not chksum:
                chksum_found = _download_checksum_file(self.get_value("RUNDIR"))

Should be:

            if chksum:
                chksum_found = _download_checksum_file(self.get_value("RUNDIR"))

Or:

            if not chksum_found:
                chksum_found = _download_checksum_file(self.get_value("RUNDIR"))

I'm not 100% sure which, but I am pretty sure we don't want to download checksum files if chksum=False.

Test suite: Test baseline: Test namelist changes: Test status: [bit for bit, roundoff, climate changing]

Fixes [CIME Github issue #]

User interface changes?:

Update gh-pages html (Y/N)?: