Skip to content

Commit 226a67d

Browse files
atscottalxhub
authored andcommittedAug 27, 2024·
fix(core): Schedulers run in zone above Angular rather than root (#57553)
This change updates the timers used in the coalescing and hybrid mode schedulers to run in the zone above Angular rather than the root zone. Running the timers in the root zone makes them impossible to flush when using `fakeAsync` and also may make them invisible to other zones in the hierarchy that might have desirable behaviors such as task/perf tracking. fixes #56767 BREAKING CHANGE: The timers that are used for zone coalescing and hybrid mode scheduling (which schedules an application state synchronization when changes happen outside the Angular zone) will now run in the zone above Angular rather than the root zone. This will mostly affect tests which use `fakeAsync`: these timers will now be visible to `fakeAsync` and can be affected by `tick` or `flush`. PR Close #57553
1 parent 76b9e2b commit 226a67d

File tree

1 file changed

+1
-1
lines changed
  • packages/core/src/change_detection/scheduling

1 file changed

+1
-1
lines changed
 

‎packages/core/src/change_detection/scheduling/flags.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
* found in the LICENSE file at https://angular.io/license
77
*/
88

9-
export const SCHEDULE_IN_ROOT_ZONE_DEFAULT = true;
9+
export const SCHEDULE_IN_ROOT_ZONE_DEFAULT = false;

0 commit comments

Comments
 (0)
Please sign in to comment.