Release 2025-05-19
This commit is contained in:
@@ -1,43 +0,0 @@
|
||||
from pyworker.tasks.base import Task
|
||||
from pyworker.utils.app_logging import setup_logging
|
||||
|
||||
logger = setup_logging(__name__)
|
||||
|
||||
|
||||
class ForceTriggersTask(Task):
|
||||
"""
|
||||
Force triggers to run under certain conditions.
|
||||
"""
|
||||
|
||||
RECENT_LISTED_INTERVAL_DAYS = 15
|
||||
|
||||
def __init__(self):
|
||||
super().__init__("force_triggers")
|
||||
|
||||
def run(self) -> bool:
|
||||
logger.info(f"Starting {self.name} task.")
|
||||
|
||||
# Use the connection provided by the base Task class
|
||||
if not self.conn:
|
||||
logger.error("No database connection available")
|
||||
return False
|
||||
|
||||
update_query = f"""
|
||||
UPDATE "Service"
|
||||
SET "isRecentlyListed" = FALSE, "updatedAt" = NOW()
|
||||
WHERE "isRecentlyListed" = TRUE
|
||||
AND "listedAt" IS NOT NULL
|
||||
AND "listedAt" < NOW() - INTERVAL '{self.RECENT_LISTED_INTERVAL_DAYS} days'
|
||||
"""
|
||||
try:
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.execute(update_query)
|
||||
self.conn.commit()
|
||||
added_count = cursor.rowcount
|
||||
logger.info(f"Updated {added_count} services.")
|
||||
except Exception as e:
|
||||
logger.error(f"Error updating services: {e}")
|
||||
return False
|
||||
|
||||
logger.info(f"{self.name} task completed successfully.")
|
||||
return True
|
||||
Reference in New Issue
Block a user