Skip to content

Commit

Permalink
hotfix: disable dynamic intermediary skipping for top level
Browse files Browse the repository at this point in the history
  • Loading branch information
dodamih authored and supersergiy committed Jan 6, 2024
1 parent eb3ff9e commit bc84d38
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ def _build_subchunkable_apply_flow( # pylint: disable=keyword-arg-before-vararg
),
allow_cache=(allow_cache_up_to_level >= level + 1),
clear_cache_on_return=(allow_cache_up_to_level == level + 1),
force_intermediaries=not (skip_intermediaries) and ((level != num_levels - 1)),
force_intermediaries=not (skip_intermediaries),
)

return flow_schema(idx, dst, op_args, op_kwargs)

0 comments on commit bc84d38

Please sign in to comment.