We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6beda6 commit eae0cf5Copy full SHA for eae0cf5
livy/src/test/java/org/apache/zeppelin/livy/LivyInterpreterIT.java
@@ -495,7 +495,8 @@ public void testSparkInterpreterWithDisplayAppInfo_StringWithoutTruncation()
495
InterpreterResult result = sparkInterpreter.interpret("sc.version", context);
496
assertEquals(InterpreterResult.Code.SUCCESS, result.code());
497
assertEquals(2, result.message().size());
498
- assertTrue(result.message().get(1).getData().contains("Spark Application Id"));
+ // check yarn appId and ensure it is not null
499
+ assertTrue(result.message().get(1).getData().contains("Spark Application Id: application_"));
500
501
// html output
502
String htmlCode = "println(\"%html <h1> hello </h1>\")";
0 commit comments