Skip to content

Commit

Permalink
not sending automated emails to users
Browse files Browse the repository at this point in the history
  • Loading branch information
avikdatta committed Feb 19, 2024
1 parent 0b05163 commit 1fece3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion igf_airflow/utils/dag38_project_cleanup_step2_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def fetch_project_cleanup_data() -> str:
queue='hpc_4G')
def notify_user_about_project_cleanup(
project_cleanup_data_file: str,
send_email: bool = True,
send_email: bool = False,
email_user_key: str = 'username') -> None:
try:
check_file_path(project_cleanup_data_file)
Expand Down
2 changes: 1 addition & 1 deletion igf_airflow/utils/dag39_project_cleanup_step3_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def mark_project_deleted_on_portal() -> None:
queue='hpc_4G')
def notify_user_about_project_cleanup_finished(
project_cleanup_data_file: str,
send_email: bool = True,
send_email: bool = False,
email_user_key: str = 'username') -> None:
try:
check_file_path(project_cleanup_data_file)
Expand Down

0 comments on commit 1fece3e

Please sign in to comment.