diff --git a/ietf/idindex/tasks.py b/ietf/idindex/tasks.py index 6ae2efc5eea..5e7e193bbac 100644 --- a/ietf/idindex/tasks.py +++ b/ietf/idindex/tasks.py @@ -57,7 +57,7 @@ def idindex_update_task(): ftp_path = Path(settings.FTP_DIR) / "internet-drafts" all_archive_path = Path(settings.INTERNET_ALL_DRAFTS_ARCHIVE_DIR) - with TempFileManager("/a/tmp") as tmp_mgr: + with TempFileManager() as tmp_mgr: # Generate copies of new contents all_id_content = all_id_txt() all_id_tmpfile = tmp_mgr.make_temp_file(all_id_content) diff --git a/ietf/settings.py b/ietf/settings.py index b341e3e0e71..895fa489b3b 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -821,8 +821,6 @@ def skip_unreadable_post(record): # Age at which a submission expires if not posted IDSUBMIT_EXPIRATION_AGE = datetime.timedelta(days=14) -IDSUBMIT_MANUAL_STAGING_DIR = '/tmp/' - IDSUBMIT_FILE_TYPES = ( 'txt', 'html',