cleanup and rename provider to plugin
This commit is contained in:
+4
-4
@@ -1562,7 +1562,7 @@ class PipelineExecutor:
|
||||
_add(getattr(item, "table", None))
|
||||
|
||||
try:
|
||||
from ProviderCore.registry import get_plugin, is_known_plugin_name
|
||||
from PluginCore.registry import get_plugin, is_known_plugin_name
|
||||
except Exception:
|
||||
get_plugin = None # type: ignore
|
||||
is_known_plugin_name = None # type: ignore
|
||||
@@ -1679,7 +1679,7 @@ class PipelineExecutor:
|
||||
_add(getattr(item, "source", None))
|
||||
|
||||
try:
|
||||
from ProviderCore.registry import get_plugin, is_known_plugin_name
|
||||
from PluginCore.registry import get_plugin, is_known_plugin_name
|
||||
except Exception:
|
||||
return None
|
||||
|
||||
@@ -2313,7 +2313,7 @@ class PipelineExecutor:
|
||||
auto_stage = None
|
||||
if isinstance(table_type, str) and table_type:
|
||||
try:
|
||||
from ProviderCore.registry import selection_auto_stage_for_table
|
||||
from PluginCore.registry import selection_auto_stage_for_table
|
||||
|
||||
auto_stage = selection_auto_stage_for_table(table_type)
|
||||
except Exception:
|
||||
@@ -3098,7 +3098,7 @@ class PipelineExecutor:
|
||||
auto_stage = None
|
||||
if isinstance(table_type, str) and table_type:
|
||||
try:
|
||||
from ProviderCore.registry import selection_auto_stage_for_table
|
||||
from PluginCore.registry import selection_auto_stage_for_table
|
||||
|
||||
# Preserve historical behavior: only forward selection-stage args
|
||||
# to the auto stage when we are appending a new last stage.
|
||||
|
||||
Reference in New Issue
Block a user