SIENTIAPDE-1193

Update image tag to 0.4.3 in values.yaml and refactor Redis key format for last data timestamp to use colons for improved readability.
This commit is contained in:
vitor-aignosi
2025-08-22 15:13:04 -03:00
parent 96a28e91e5
commit 39ba82b539
2 changed files with 3 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ class Redis(RedisBase):
Gets the last data timestamp from redis.
"""
metadata = input_data['metadata']
key = f"last_data_timestamp_{input_data['workflow_name']}_{input_data['schedule_name']}"
key = f"last_data_timestamp:{input_data['workflow_name']}:{input_data['schedule_name']}"
self.info(f"Getting last data timestamp for {key}")
@@ -60,7 +60,7 @@ class Redis(RedisBase):
Puts the last data timestamp into redis.
"""
metadata = input_data['metadata']
key = f"last_data_timestamp_{input_data['workflow_name']}_{input_data['schedule_name']}"
key = f"last_data_timestamp:{input_data['workflow_name']}:{input_data['schedule_name']}"
self.info(f"Putting last data timestamp for {key}")