Skip to content

Commit

Permalink
Merge branch 'feature/v3alpha3' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
tsjackson-noaa committed Feb 24, 2021
2 parents cddd470 + ad4cc5a commit f4ad525
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sites/NOAA_GFDL/gfdl.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
class GFDLMDTFFramework(core.MDTFFramework):
def parse_mdtf_args(self, cli_obj, pod_info_tuple):
super(GFDLMDTFFramework, self).parse_mdtf_args(cli_obj, pod_info_tuple)

self.dry_run = cli_obj.config.get('dry_run', False)
self.timeout = cli_obj.config.get('file_transfer_timeout', 0)
# set up cooperative mode -- hack to pass config settings
self.frepp_mode = cli_obj.config.get('frepp', False)
if self.frepp_mode:
Expand All @@ -43,8 +46,6 @@ def _post_parse_hook(self, cli_obj, config, paths):
super(GFDLMDTFFramework, self)._post_parse_hook(cli_obj, config, paths)

self.reset_case_pod_list(cli_obj, config, paths)
self.dry_run = config.get('dry_run', False)
self.timeout = config.get('file_transfer_timeout', 0)
# copy obs data from site install
gfdl_util.fetch_obs_data(
paths.OBS_DATA_REMOTE, paths.OBS_DATA_ROOT,
Expand Down

0 comments on commit f4ad525

Please sign in to comment.