Skip to content

Commit

Permalink
Update dask.md (#3303)
Browse files Browse the repository at this point in the history
Updated function name in response to this change: 71e12b1

Signed-off-by: hermlon <[email protected]>
  • Loading branch information
hermlon authored Nov 14, 2023
1 parent b2bc942 commit 5f1aaeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/deployment/dask.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ from distributed import Client, as_completed, worker_client
from kedro.framework.hooks.manager import (
_create_hook_manager,
_register_hooks,
_register_hooks_setuptools,
_register_hooks_entry_points,
)
from kedro.framework.project import settings
from kedro.io import AbstractDataset, DataCatalog
Expand Down Expand Up @@ -145,7 +145,7 @@ class DaskRunner(AbstractRunner):
"""
hook_manager = _create_hook_manager()
_register_hooks(hook_manager, settings.HOOKS)
_register_hooks_setuptools(hook_manager, settings.DISABLE_HOOKS_FOR_PLUGINS)
_register_hooks_entry_points(hook_manager, settings.DISABLE_HOOKS_FOR_PLUGINS)

return run_node(node, catalog, hook_manager, is_async, session_id)

Expand Down

0 comments on commit 5f1aaeb

Please sign in to comment.