debug cron
All checks were successful
Build and Push Docker Image / build (push) Successful in 3m50s
All checks were successful
Build and Push Docker Image / build (push) Successful in 3m50s
This commit is contained in:
@@ -50,7 +50,7 @@ class caldav_sync_manager(models.Model):
|
||||
o_caldav_sync_management = caldav_sync_manager.objects.filter(dtDate=today.date())
|
||||
if not o_caldav_sync_management.exists():
|
||||
self.copy_caldav_data(today)
|
||||
print(f"synced events")
|
||||
print(f"synced events: {today}")
|
||||
else:
|
||||
print("Aujourd'hui: pas de copy, sync déjà fait")
|
||||
|
||||
@@ -59,7 +59,7 @@ class caldav_sync_manager(models.Model):
|
||||
o_caldav_sync_management = caldav_sync_manager.objects.filter(dtDate=last_month.date())
|
||||
if not o_caldav_sync_management.exists():
|
||||
self.copy_caldav_data(last_month)
|
||||
print(f"synced events")
|
||||
print(f"synced events: {last_month}")
|
||||
else:
|
||||
print("Mois précédant: pas de copy, sync déjà fait")
|
||||
|
||||
|
Reference in New Issue
Block a user