localradar / force_sync.py
GitHub Actions
LocalRadar Deployment (Clean State)
6d2410d
Raw
History Blame Contribute Delete
345 Bytes
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())