chore: update copyright year and bot fallback date to 2026

This commit is contained in:
Nubenetes Bot
2026-05-10 20:01:30 +02:00
parent a4d28c32e8
commit 866ed4b7f8
2 changed files with 4 additions and 4 deletions

View File

@@ -276,7 +276,7 @@ nav:
- Remote Tech Jobs: remote-tech-jobs.md
- Clients: customer.md
- About: about.md
copyright: 2024 <a href="https://twitter.com/nubenetes">Nubenetes</a>, <a href="https://nubenetes.com/about/">about</a>.
copyright: 2026 <a href="https://twitter.com/nubenetes">Nubenetes</a>, <a href="https://nubenetes.com/about/">about</a>.
extra:
analytics:
provider: google

View File

@@ -24,11 +24,11 @@ async def master_orchestrator():
# El horizonte es un segundo después para evitar reprocesar el mismo commit
time_horizon = last_commit_date + timedelta(seconds=1)
else:
# Fecha base solicitada: Octubre 2024
time_horizon = datetime(2024, 10, 1, 0, 0, tzinfo=MADRID_TZ)
# Fecha base solicitada: Enero 2026
time_horizon = datetime(2026, 1, 1, 0, 0, tzinfo=MADRID_TZ)
except Exception as e:
print(f"[!] Error calculando horizonte temporal: {e}. Usando fecha base.")
time_horizon = datetime(2024, 10, 1, 0, 0, tzinfo=MADRID_TZ)
time_horizon = datetime(2026, 1, 1, 0, 0, tzinfo=MADRID_TZ)
print(f"[*] Buscando novedades desde: {time_horizon}")