cloud-fan commented on code in PR #39041:
URL: https://github.com/apache/spark/pull/39041#discussion_r1052132399
##########
python/pyspark/sql/observation.py:
##########
@@ -109,7 +111,9 @@ def _on(self, df: DataFrame, *exprs: Column) -> DataFrame:
)
return DataFrame(observed_df, df.sparkSession)
- @property
+ # Note that decorated property only works with Python 3.9+ which Spark
Connect requires.
+ @property # type: ignore[misc]
+ @try_remote_observation
Review Comment:
I see, so this is temporary?
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]