We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6cc2d5 commit 81849eeCopy full SHA for 81849ee
tests/integration/test_request_queue.py
@@ -1028,11 +1028,9 @@ async def test_rq_isolation(
1028
"""Test that different request queues are properly isolated."""
1029
1030
async def main() -> None:
1031
- from crawlee._utils.crypto import crypto_random_object_id
1032
-
1033
async with Actor:
1034
# Get the unique actor name for creating unique queue names
1035
- actor_name = f'python-sdk-tests-actor-generated-{crypto_random_object_id(8)}'
+ actor_name = Actor.configuration.actor_id
1036
1037
# Open multiple queues with unique names
1038
rq1 = await Actor.open_request_queue(name=f'{actor_name}-rq-1')
0 commit comments