mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Fix test failure
This commit is contained in:
parent
55c45c9c9e
commit
5cfed2a7b8
1 changed files with 3 additions and 1 deletions
|
|
@ -960,7 +960,9 @@ public class SparkInterpreter extends Interpreter {
|
|||
if (url != null) {
|
||||
infos.put("url", url);
|
||||
logger.info("Sending metainfos to Zeppelin server: {}", infos.toString());
|
||||
ctx.getClient().onMetaInfosReceived(infos);
|
||||
if (ctx != null && ctx.getClient() != null) {
|
||||
ctx.getClient().onMetaInfosReceived(infos);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue