SIENTIAPDE-1151

Update Redis set method to use a TTL of 5 hours for improved data retention.
This commit is contained in:
vitor-aignosi
2025-07-18 16:19:06 -03:00
parent e6d2bac902
commit b230ad614e

View File

@@ -75,7 +75,7 @@ class Redis(RedisBase):
) )
try: try:
self.set(key, last_data_timestamp, ttl=None) self.set(key, last_data_timestamp, ttl=60*60*5)
except Exception as e: except Exception as e:
self.send_notification( self.send_notification(
metadata=metadata, metadata=metadata,