Skip to content

Commit 8338319

Browse files
authored
Run graph normalisation after dask order (#8818)
1 parent e0ce0fe commit 8338319

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

distributed/scheduler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4884,6 +4884,7 @@ async def update_graph(
48844884
internal_priority = await offload(
48854885
dask.order.order, dsk=dsk, dependencies=stripped_deps
48864886
)
4887+
dsk = valmap(_normalize_task, dsk)
48874888

48884889
self._create_taskstate_from_graph(
48894890
dsk=dsk,
@@ -9383,5 +9384,4 @@ def _materialize_graph(
93839384
deps.discard(k)
93849385
dependencies[k] = deps
93859386

9386-
dsk = valmap(_normalize_task, dsk)
93879387
return dsk, dependencies, annotations_by_type

0 commit comments

Comments
 (0)