Spaces:
Paused
Paused
| import asyncio | |
| from services.culture_api import sync_data_to_cache | |
| async def main(): | |
| print("Triggering FORCE synchronization to recover localized caches...") | |
| await sync_data_to_cache(force=True, wait=True) | |
| print("Force sync task launched. Recovery is running in the background.") | |
| if __name__ == "__main__": | |
| asyncio.run(main()) | |