Skip to content

Commit

Permalink
fix(pyspark): remove use of attribute that prevents using spark conne…
Browse files Browse the repository at this point in the history
…ct (#9061)

Remove unused of `sparkContext` attribute, use of which prevents using
spark connect.

Closes #9060.
  • Loading branch information
cpcloud authored Apr 26, 2024
1 parent 5dac34d commit b48f451
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ibis/backends/pyspark/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ def do_connect(self, session: SparkSession | None = None) -> None:

session = SparkSession.builder.getOrCreate()

self._context = session.sparkContext
self._session = session

# Spark internally stores timestamps as UTC values, and timestamp data
Expand Down

0 comments on commit b48f451

Please sign in to comment.