From 01e861d054ef697150396135631d9e7787fd9732 Mon Sep 17 00:00:00 2001 From: Benjamin Smith Date: Thu, 30 May 2024 17:12:09 +0200 Subject: [PATCH] this is very noisy and seems common --- src/near_lake_framework/s3_fetchers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/near_lake_framework/s3_fetchers.py b/src/near_lake_framework/s3_fetchers.py index 27a520b..f4ac49c 100644 --- a/src/near_lake_framework/s3_fetchers.py +++ b/src/near_lake_framework/s3_fetchers.py @@ -70,7 +70,7 @@ async def fetch_shard_or_retry( return near_primitives.IndexerShard.from_json(body) except ClientError as e: if e.response["Error"]["Code"] == "NoSuchKey": - logging.warning("Failed to fetch shard %s - doesn't exist", shard_key) + logging.debug("Failed to fetch shard %s - doesn't exist", shard_key) else: traceback.print_exc() except EndpointConnectionError as e: