dongjoon-hyun commented on code in PR #52011:
URL: https://github.com/apache/spark/pull/52011#discussion_r2277810890


##########
python/pyspark/testing/utils.py:
##########
@@ -94,6 +94,21 @@ def have_package(name: str) -> bool:
 have_yaml = have_package("yaml")
 yaml_requirement_message = None if have_yaml else "No module named 'yaml'"
 
+have_grpc = have_package("grpc")
+grpc_requirement_message = None if have_yaml else "No module named 'grpc'"
+
+have_grpc_status = have_package("grpc_status")
+grpc_status_requirement_message = None if have_yaml else "No module named 
'grpc_status'"

Review Comment:
   Oh, here are typos. I made a follow-up PR.
   
   - https://github.com/apache/spark/pull/52032



##########
python/pyspark/testing/utils.py:
##########
@@ -94,6 +94,21 @@ def have_package(name: str) -> bool:
 have_yaml = have_package("yaml")
 yaml_requirement_message = None if have_yaml else "No module named 'yaml'"
 
+have_grpc = have_package("grpc")
+grpc_requirement_message = None if have_yaml else "No module named 'grpc'"
+
+have_grpc_status = have_package("grpc_status")
+grpc_status_requirement_message = None if have_yaml else "No module named 
'grpc_status'"

Review Comment:
   Oh, here are two typos. I made a follow-up PR.
   
   - https://github.com/apache/spark/pull/52032



-- 
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]

Reply via email to