Skip to content

Commit

Permalink
feat: sarabwayu mvp 제작 완료
Browse files Browse the repository at this point in the history
  • Loading branch information
taewan2002 committed Feb 15, 2024
1 parent 518056c commit 3d9b661
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/service/house.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ async def fetch_house_list(self, page: int) -> list:

async def cache_house_list(self, page: int) -> None:
redis_key = f"list:{self.user.id}:house:{page}"
return_houses = await self.fatch_house_list(page)
return_houses = await self.fetch_house_list(page)
await self.redis.set(redis_key, json.dumps(return_houses, ensure_ascii=False), ex=1800)

async def list(self, background_tasks: BackgroundTasks, page: int) -> list:
Expand Down
Binary file modified dump.rdb
Binary file not shown.

0 comments on commit 3d9b661

Please sign in to comment.