Skip to content

Commit

Permalink
Update _middlewares.py
Browse files Browse the repository at this point in the history
Fix The annoyning Deprecation issue
by just using get_slot_key instead of _get_slot_key and remove the second param
  • Loading branch information
ahmed-ellaban authored Dec 4, 2024
1 parent 5fbf0bc commit 0e79dae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrapy_zyte_api/_middlewares.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def slot_request(self, request, spider, force=False):
return

downloader = self._crawler.engine.downloader
slot_id = downloader._get_slot_key(request, spider)
slot_id = downloader.get_slot_key(request)
if not isinstance(slot_id, str) or not slot_id.startswith(self._slot_prefix):
slot_id = f"{self._slot_prefix}{slot_id}"
request.meta["download_slot"] = slot_id
Expand Down

0 comments on commit 0e79dae

Please sign in to comment.