Skip to content

Commit a86659f

Browse files
committed
Revert "run test with additional logs"
This reverts commit 1397a2c.
1 parent 1397a2c commit a86659f

File tree

1 file changed

+0
-14
lines changed
  • backend/tests/integration/common_utils/managers

1 file changed

+0
-14
lines changed

Diff for: backend/tests/integration/common_utils/managers/cc_pair.py

-14
Original file line numberDiff line numberDiff line change
@@ -549,13 +549,6 @@ def wait_for_sync(
549549
cc_pair, user_performing_action
550550
)
551551

552-
print(f"Current doc_last_synced: {doc_last_synced}")
553-
print(f"Current group_last_synced: {group_last_synced}")
554-
print(f"Comparing against after time: {after}")
555-
print(
556-
f"Doc synced status: {doc_synced}, Group synced status: {group_synced}"
557-
)
558-
559552
if not doc_synced and doc_last_synced and doc_last_synced > after:
560553
print(f"doc_last_synced: {doc_last_synced}")
561554
print(f"sync command start time: {after}")
@@ -569,17 +562,10 @@ def wait_for_sync(
569562
group_synced = True
570563

571564
if doc_synced and (group_synced or not should_wait_for_group_sync):
572-
print(f"All required syncs completed for cc_pair={cc_pair.id}")
573565
break
574566

575567
elapsed = time.monotonic() - start
576568
if elapsed > timeout:
577-
print(
578-
f"TIMEOUT ERROR - Doc synced: {doc_synced}, Group synced: {group_synced}"
579-
)
580-
print(
581-
f"Last doc sync time: {doc_last_synced}, Last group sync time: {group_last_synced}"
582-
)
583569
raise TimeoutError(
584570
f"Permission sync was not completed within {timeout} seconds"
585571
)

0 commit comments

Comments
 (0)