From 97d9251ba438d5c442d180b58b3bd9db8e7196d3 Mon Sep 17 00:00:00 2001 From: ericssonmarin-cpp <85146518+ericssonmarin-cpp@users.noreply.github.com> Date: Tue, 22 Aug 2023 15:56:12 -0700 Subject: [PATCH] Db connection for Markets. --- MarketPlaces/DB_Connection/db_connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MarketPlaces/DB_Connection/db_connection.py b/MarketPlaces/DB_Connection/db_connection.py index 6fed5a3..5c29e03 100644 --- a/MarketPlaces/DB_Connection/db_connection.py +++ b/MarketPlaces/DB_Connection/db_connection.py @@ -321,7 +321,7 @@ def create_items(cur, row, marketId, vendorId): 'itemId': itemId}) - else: #updating when was the last time the crawler saw tha item + else: #updating when was the last time the crawler saw that item sql = "Update items set lastseen_item = %(lastseen_item)s where item_id = %(itemId)s"