diff --git a/fb_marketplace/fb_marketplace_product_info.py b/fb_marketplace/fb_marketplace_product_info.py index 1191dd9..65cdeea 100644 --- a/fb_marketplace/fb_marketplace_product_info.py +++ b/fb_marketplace/fb_marketplace_product_info.py @@ -43,7 +43,7 @@ class FbMarketplaceProductInfo: table = f"""{self.config.get('crawler_schema')}.{self.config.get('tracker_tab')}""" sql = f""" - SELECT * FROM {table} where flag=1 limit 1 + SELECT * FROM {table} where flag=0 """ print("SQL is: {}".format(sql)) self.cur.execute(sql) @@ -61,7 +61,6 @@ class FbMarketplaceProductInfo: self.cur.execute(sql) except Exception as e: logging.info(e) - pass time.sleep(random.randint(5,20))