ulysses-you commented on pull request #33550: URL: https://github.com/apache/spark/pull/33550#issuecomment-888761873
@holdenk @dongjoon-hyun ``` test("Run SparkPi with a very long application name.", k8sTestTag) { sparkAppConf.set("spark.app.name", "long" * 40) runSparkPiAndVerifyCompletion() } ``` I just found the exists test but not covered this issue since `SparkPi` changed the app name in code. ``` val spark = SparkSession .builder .appName("Spark Pi") .getOrCreate() ``` I make a new classs that `SparkPiWithoutAppName` in example for k8s test. Please let me if you have other idea. -- 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: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org