raphaelauv commented on code in PR #60437:
URL: https://github.com/apache/airflow/pull/60437#discussion_r2685749701
##########
providers/apache/spark/docs/changelog.rst:
##########
@@ -29,6 +29,27 @@
Changelog
---------
+5.5.0
+.....
+
+Features
+~~~~~~~~
+
+* ``PysparkOperator and not only a decorator (#60041)``
Review Comment:
maybe we could explicitly say that the
sc argument is no more present/injected on task.pyspark decorator
```python
@task.pyspark()
def aaa(spark,sc):
passs
```
->
```python
@task.pyspark()
def aaa(spark):
passs
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]