Skip to content

Commit

Permalink
fix: 파일 수정을 /tmp 밑에서 동작하도록 코드 수정
Browse files Browse the repository at this point in the history
- 기존 업데이트에서 누락된 부분이 발견되어 수정합니다.
  • Loading branch information
Seokyoung-Hong committed Jun 5, 2024
1 parent e5cdd17 commit d135807
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions sandol/crawler/cafeteria.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,7 @@ def save_temp_menu(self):
# only write
temp_menu = {"lunch": self.temp_lunch, "dinner": self.temp_dinner}

current_dir = os.path.dirname(__file__)
filename = os.path.join(current_dir, f'{self.name}_temp_menu.json')
filename = os.path.join("/tmp", f'{self.name}_temp_menu.json')

with open(filename, 'w', encoding='utf-8') as file:
json.dump(temp_menu, file, ensure_ascii=False, indent=4)
Expand Down Expand Up @@ -214,7 +213,6 @@ def submit(self):
temp_menu.json 파일의 "lunch", "dinner" 데이터에 변화가 생길 때
원본 test.json 파일에 덮어씀, 동시에 self.temp_menu 초기화.
"""
# TODO(Seokyoung_Hong): S3용으로 수정 필요
filename = os.path.join('/tmp', 'test.json')

# read and write
Expand Down

0 comments on commit d135807

Please sign in to comment.