File tree Expand file tree Collapse file tree
monitor/data_monitoring/alerts Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -205,7 +205,6 @@ def run_operation(
205205
206206 def run (
207207 self ,
208- models : Optional [str ] = None ,
209208 select : Optional [str ] = None ,
210209 selector : Optional [str ] = None ,
211210 full_refresh : bool = False ,
@@ -216,8 +215,6 @@ def run(
216215 command_args = ["run" ]
217216 if full_refresh :
218217 command_args .append ("--full-refresh" )
219- if models :
220- command_args .extend (["-m" , models ])
221218 if select :
222219 command_args .extend (["-s" , select ])
223220 if selector :
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ def _populate_data(
107107 if days_back :
108108 vars .update (days_back = days_back )
109109 success = self .internal_dbt_runner .run (
110- models = "elementary_cli.alerts.alerts_v2" ,
110+ select = "elementary_cli.alerts.alerts_v2" ,
111111 full_refresh = dbt_full_refresh ,
112112 vars = vars ,
113113 )
You can’t perform that action at this time.
0 commit comments