mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix some word spell errors
This commit is contained in:
parent
d11221fb8a
commit
fdb4e51e21
3 changed files with 4 additions and 4 deletions
|
|
@ -195,8 +195,8 @@ You can configure Apache Zeppelin with both **environment variables** in `conf/z
|
|||
|
||||
<table class="table-configuration">
|
||||
<tr>
|
||||
<th>zepplin-env.sh</th>
|
||||
<th>zepplin-site.xml</th>
|
||||
<th>zeppelin-env.sh</th>
|
||||
<th>zeppelin-site.xml</th>
|
||||
<th>Default value</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ public class SparkRInterpreter extends Interpreter {
|
|||
ZeppelinRContext.setSparkSession(sparkInterpreter.getSparkSession());
|
||||
}
|
||||
ZeppelinRContext.setSqlContext(sparkInterpreter.getSQLContext());
|
||||
ZeppelinRContext.setZepplinContext(sparkInterpreter.getZeppelinContext());
|
||||
ZeppelinRContext.setZeppelinContext(sparkInterpreter.getZeppelinContext());
|
||||
|
||||
zeppelinR = new ZeppelinR(rCmdPath, sparkRLibPath, port, sparkVersion);
|
||||
try {
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ public class ZeppelinRContext {
|
|||
ZeppelinRContext.sparkContext = sparkContext;
|
||||
}
|
||||
|
||||
public static void setZepplinContext(ZeppelinContext zeppelinContext) {
|
||||
public static void setZeppelinContext(ZeppelinContext zeppelinContext) {
|
||||
ZeppelinRContext.zeppelinContext = zeppelinContext;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue