-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename:
rebuild_cache
function to cache
This change updates the function name for clarity and brevity. The corresponding import statement and function call in `tasks.py` were also updated to reflect this new name.
- Loading branch information
1 parent
de514b9
commit 732e150
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from celery import shared_task | ||
from orp_search.cache.rebuild import rebuild_cache | ||
from orp_search.cache.rebuild import cache | ||
|
||
|
||
@shared_task | ||
def rebuild_cache_task(): | ||
return rebuild_cache() | ||
return cache() |