File tree 1 file changed +0
-14
lines changed
backend/tests/integration/common_utils/managers
1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -549,13 +549,6 @@ def wait_for_sync(
549
549
cc_pair , user_performing_action
550
550
)
551
551
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
-
559
552
if not doc_synced and doc_last_synced and doc_last_synced > after :
560
553
print (f"doc_last_synced: { doc_last_synced } " )
561
554
print (f"sync command start time: { after } " )
@@ -569,17 +562,10 @@ def wait_for_sync(
569
562
group_synced = True
570
563
571
564
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 } " )
573
565
break
574
566
575
567
elapsed = time .monotonic () - start
576
568
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
- )
583
569
raise TimeoutError (
584
570
f"Permission sync was not completed within { timeout } seconds"
585
571
)
You can’t perform that action at this time.
0 commit comments