Skip to content

Commit

Permalink
update function name
Browse files Browse the repository at this point in the history
  • Loading branch information
KorayKirli committed Apr 29, 2019
1 parent c337789 commit 8c451c6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions chalicelib/checks/wfr_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1005,8 +1005,8 @@ def repli_2_stage_start(connection, **kwargs):
missing_runs = check_result.get('needs_runs')
if kwargs.get('patch_completed'):
patch_meta = check_result.get('completed_runs')
action = wfr_utils.start_repli_tasks(missing_runs, patch_meta, action, my_auth, my_env, start,
move_to_pc=True, runtype='repliseq')
action = wfr_utils.start_tasks(missing_runs, patch_meta, action, my_auth, my_env, start,
move_to_pc=True, runtype='repliseq')
return action


Expand Down Expand Up @@ -1054,8 +1054,8 @@ def repli_multi_stage_start(connection, **kwargs):
missing_runs = check_result.get('needs_runs')
if kwargs.get('patch_completed'):
patch_meta = check_result.get('completed_runs')
action = wfr_utils.start_repli_tasks(missing_runs, patch_meta, action, my_auth, my_env, start,
move_to_pc=True, runtype='repliseq')
action = wfr_utils.start_tasks(missing_runs, patch_meta, action, my_auth, my_env, start,
move_to_pc=True, runtype='repliseq')
return action


Expand Down Expand Up @@ -1103,8 +1103,8 @@ def tsa_seq_start(connection, **kwargs):
missing_runs = check_result.get('needs_runs')
if kwargs.get('patch_completed'):
patch_meta = check_result.get('completed_runs')
action = wfr_utils.start_repli_tasks(missing_runs, patch_meta, action, my_auth, my_env, start,
move_to_pc=False, runtype='repliseq')
action = wfr_utils.start_tasks(missing_runs, patch_meta, action, my_auth, my_env, start,
move_to_pc=False, runtype='repliseq')
return action


Expand Down Expand Up @@ -1152,8 +1152,8 @@ def nad_seq_start(connection, **kwargs):
missing_runs = check_result.get('needs_runs')
if kwargs.get('patch_completed'):
patch_meta = check_result.get('completed_runs')
action = wfr_utils.start_repli_tasks(missing_runs, patch_meta, action, my_auth, my_env, start,
move_to_pc=True, runtype='repliseq')
action = wfr_utils.start_tasks(missing_runs, patch_meta, action, my_auth, my_env, start,
move_to_pc=False, runtype='repliseq')
return action


Expand Down

0 comments on commit 8c451c6

Please sign in to comment.