cleanup and rename provider to plugin

This commit is contained in:
2026-05-21 16:19:17 -07:00
parent 02d84f423e
commit e8913d1344
62 changed files with 553 additions and 165 deletions
+4 -4
View File
@@ -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.