diff --git a/nautobot_plugin_nornir/utils.py b/nautobot_plugin_nornir/utils.py index abad7b9..f5c35b9 100644 --- a/nautobot_plugin_nornir/utils.py +++ b/nautobot_plugin_nornir/utils.py @@ -7,5 +7,5 @@ def get_dispatcher(): """Helper method to load the dispatcher from nautobot nornir or config if defined.""" if PLUGIN_CFG.get("dispatcher_mapping"): - return PLUGIN_CFG["dispatcher_mapping"] + return {**_DEFAULT_DRIVERS_MAPPING, **PLUGIN_CFG["dispatcher_mapping"]} return _DEFAULT_DRIVERS_MAPPING