Skip to content

Commit efd9e53

Browse files
committed
Remove internal debug logs from the test
Platform acknowledged it is a bug
1 parent 281c67f commit efd9e53

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

tests/integration/test_actor_request_queue.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -242,16 +242,12 @@ async def test_request_queue_not_had_multiple_clients_platform_resurrection(
242242
async def main() -> None:
243243
async with Actor:
244244
rq_1 = await Actor.open_request_queue()
245-
Actor.log.info(f'Used client key = {rq_1._client._api_client.client_key}, request queue ID = {rq_1.id}')
246-
metadata = await rq_1.get_metadata()
247-
Actor.log.info(metadata)
248-
249-
assert metadata.had_multiple_clients is False, 'Not accessed yet, should be False'
245+
assert (await rq_1.get_metadata()).had_multiple_clients is False, 'Not accessed yet, should be False'
250246

251247
await rq_1.fetch_next_request()
252248

253249
assert (await rq_1.get_metadata()).had_multiple_clients is False, (
254-
'Accessed with same client, should be False'
250+
'Accessed with the same client, should be False'
255251
)
256252

257253
actor = await make_actor(label='rq-multiple-clients-resurrection', main_func=main)

0 commit comments

Comments
 (0)