Lymah123 commented on code in PR #36495:
URL: https://github.com/apache/airflow/pull/36495#discussion_r1438606960


##########
tests/system/providers/microsoft/azure/example_synapse_run_pipeline.py:
##########
@@ -36,6 +36,14 @@
     catchup=False,
     tags=["synapse", "example"],
 ) as dag:
+    # [START howto_operator_azure_synapse_run_pipeline]
+    run_spark_job = AzureSynapseRunPipelineOperator(
+        task_id="run_pipeline_job",
+        spark_pool="provpipelinepool",
+        payload=PIPELINE_JOB_PAYLOAD,  # type: ignore
+    )
+    # [END howto_operator_azure_synapse_run_pipeline]

Review Comment:
   Why do we need a new AzureSynapseRunPipelineOperator?
   
   It gave me an error while making the changes in VS code.
   
   Can we wrap run_pipeline1 with the howto_operator_azure_synapse_run_pipeline 
tags?
   I will change that now.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to