File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed
turbopack/crates/turbo-tasks-backend/src/backend/operation Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -1419,7 +1419,7 @@ impl AggregationUpdateQueue {
1419
1419
if retry > MAX_RETRIES {
1420
1420
panic ! (
1421
1421
"inner_of_uppers_lost_follower is not able to remove follower \
1422
- {lost_follower_id:? } ({}) from {} as they don't exist as upper or follower \
1422
+ {lost_follower_id} ({}) from {} as they don't exist as upper or follower \
1423
1423
edges",
1424
1424
ctx. get_task_description( lost_follower_id) ,
1425
1425
upper_ids
@@ -1577,9 +1577,14 @@ impl AggregationUpdateQueue {
1577
1577
retry += 1 ;
1578
1578
if retry > MAX_RETRIES {
1579
1579
panic ! (
1580
- "inner_of_upper_lost_followers is not able to remove followers \
1581
- {lost_follower_ids:?} from {upper_id:?} as they don't exist as upper or \
1582
- follower edges"
1580
+ "inner_of_upper_lost_followers is not able to remove followers {} from \
1581
+ {upper_id} ({}) as they don't exist as upper or follower edges",
1582
+ lost_follower_ids
1583
+ . iter( )
1584
+ . map( |id| format!( "{} ({})" , id, ctx. get_task_description( * id) ) )
1585
+ . collect:: <Vec <_>>( )
1586
+ . join( ", " ) ,
1587
+ ctx. get_task_description( upper_id) ,
1583
1588
)
1584
1589
}
1585
1590
self . push ( AggregationUpdateJob :: InnerOfUpperLostFollowers {
You can’t perform that action at this time.
0 commit comments