Commit 4ef052f 1 parent 36f746f commit 4ef052f Copy full SHA for 4ef052f
File tree 1 file changed +1
-3
lines changed
metadata-ingestion/src/datahub/ingestion/source/looker
1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -362,7 +362,6 @@ def replace_parameters(match):
362
362
if key in self .source_config .lookml_parameter :
363
363
return str (self .source_config .lookml_parameter .get (key ))
364
364
365
- # Log warning for missing parameter
366
365
logger .warning (f"Parameter '@{{{ key } }}' not found in configuration." )
367
366
return ""
368
367
@@ -372,7 +371,6 @@ def replace_liquid_variables(match):
372
371
if key in self .source_config .liquid_variable :
373
372
return str (self .source_config .liquid_variable .get (key ))
374
373
375
- # Log warning for missing liquid variable
376
374
logger .warning (f"Liquid variable '${{{ key } }}' not found in configuration." )
377
375
return ""
378
376
@@ -455,7 +453,7 @@ def process_lookml_template_language(
455
453
), # Now resolve liquid variables
456
454
LookmlParameterTransformer (
457
455
source_config = source_config
458
- ), # Remove @{variable } with its corresponding value
456
+ ), # Remove @{param}/${var } with its corresponding value
459
457
DropDerivedViewPatternTransformer (
460
458
source_config = source_config
461
459
), # Remove any ${} symbol
You can’t perform that action at this time.
0 commit comments