HyukjinKwon commented on code in PR #44898:
URL: https://github.com/apache/spark/pull/44898#discussion_r1467357080
##########
python/pyspark/sql/tests/streaming/test_streaming.py:
##########
@@ -294,6 +294,11 @@ def test_stream_exception(self):
self.assertIsInstance(exception, StreamingQueryException)
self._assert_exception_tree_contains_msg(exception,
"ZeroDivisionError")
+ # [SPARK-46873] There should not be a new StreamingQueryManager created
every time spark.streams is called.
+ def test_query_manager_no_recreation(self):
Review Comment:
```suggestion
called.
def test_query_manager_no_recreation(self):
# SPARK-46873: There should not be a new StreamingQueryManager created
every time spark.streams
# is called.
```
##########
python/pyspark/sql/tests/streaming/test_streaming.py:
##########
@@ -294,6 +294,11 @@ def test_stream_exception(self):
self.assertIsInstance(exception, StreamingQueryException)
self._assert_exception_tree_contains_msg(exception,
"ZeroDivisionError")
+ # [SPARK-46873] There should not be a new StreamingQueryManager created
every time spark.streams is called.
+ def test_query_manager_no_recreation(self):
Review Comment:
per https://spark.apache.org/contributing.html
--
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]