File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/databricks/labs/ucx/assessment Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -251,17 +251,17 @@ def failing_task(self, ctx: RuntimeContext):
251251
252252class WorkspaceTablesScanner (Workflow ):
253253 def __init__ (self ):
254- super ().__init__ ('workspace-tables-scanner' , [JobParameterDefinition (name = "path" , default = "" )])
254+ super ().__init__ ('workspace-tables-scanner-experimental ' , [JobParameterDefinition (name = "path" , default = "" )])
255255
256256 @job_task
257- def scan_workspace_tables (self , ctx : RuntimeContext ):
257+ def scan_workspace_code (self , ctx : RuntimeContext ):
258258 """Scan workspace for table usage using WorkspaceTablesLinter."""
259259 logger .info ("Starting workspace table scanning" )
260260
261261 # Get the path parameter and split by comma if multiple paths
262262 path_param = ctx .named_parameters .get ("path" , "" )
263263 if not path_param :
264- paths = [ "/" ]
264+ logger . error ( "No path parameter provided. Please provide a comma-separated list of paths to scan." )
265265 else :
266266 paths = [p .strip () for p in path_param .split ("," ) if p .strip ()]
267267
You can’t perform that action at this time.
0 commit comments