@@ -226,7 +226,7 @@ def get_request_by_unique_key(self, request_unique_key: str) -> dict | None:
226
226
https://docs.apify.com/api/v2#/reference/request-queues/request/get-request
227
227
228
228
Args:
229
- request_unique_key: unique key of the request to retrieve.
229
+ request_unique_key: Unique key of the request to retrieve.
230
230
231
231
Returns:
232
232
The retrieved request, or None, if it did not exist.
@@ -327,7 +327,7 @@ def prolong_request_lock_by_unique_key(
327
327
https://docs.apify.com/api/v2#/reference/request-queues/request-lock/prolong-request-lock
328
328
329
329
Args:
330
- request_unique_key: ID of the request to prolong the lock.
330
+ request_unique_key: Unique key of the request to prolong the lock.
331
331
forefront: Whether to put the request in the beginning or the end of the queue after lock expires.
332
332
lock_secs: By how much to prolong the lock, in seconds.
333
333
"""
@@ -359,7 +359,7 @@ def delete_request_lock_by_unique_key(self, request_unique_key: str, *, forefron
359
359
https://docs.apify.com/api/v2#/reference/request-queues/request-lock/delete-request-lock
360
360
361
361
Args:
362
- request_unique_key: ID of the request to delete the lock.
362
+ request_unique_key: Unique key of the request to delete the lock.
363
363
forefront: Whether to put the request in the beginning or the end of the queue after the lock is deleted.
364
364
"""
365
365
return self .delete_request_lock (unique_key_to_request_id (request_unique_key ), forefront = forefront )
@@ -660,7 +660,7 @@ async def get_request_by_unique_key(self, request_unique_key: str) -> dict | Non
660
660
https://docs.apify.com/api/v2#/reference/request-queues/request/get-request
661
661
662
662
Args:
663
- request_unique_key: unique key of the request to retrieve.
663
+ request_unique_key: Unique key of the request to retrieve.
664
664
665
665
Returns:
666
666
The retrieved request, or None, if it did not exist.
@@ -759,7 +759,7 @@ async def prolong_request_lock_by_unique_key(
759
759
https://docs.apify.com/api/v2#/reference/request-queues/request-lock/prolong-request-lock
760
760
761
761
Args:
762
- request_unique_key: ID of the request to prolong the lock.
762
+ request_unique_key: Unique key of the request to prolong the lock.
763
763
forefront: Whether to put the request in the beginning or the end of the queue after lock expires.
764
764
lock_secs: By how much to prolong the lock, in seconds.
765
765
"""
@@ -798,7 +798,7 @@ async def delete_request_lock_by_unique_key(
798
798
https://docs.apify.com/api/v2#/reference/request-queues/request-lock/delete-request-lock
799
799
800
800
Args:
801
- request_unique_key: ID of the request to delete the lock.
801
+ request_unique_key: Unique key of the request to delete the lock.
802
802
forefront: Whether to put the request in the beginning or the end of the queue after the lock is deleted.
803
803
"""
804
804
return await self .delete_request_lock (unique_key_to_request_id (request_unique_key ), forefront = forefront )
0 commit comments