mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Add new line at the end of the file
This commit is contained in:
parent
41c09d9e47
commit
22507e6216
3 changed files with 4 additions and 4 deletions
|
|
@ -158,7 +158,7 @@ public class PythonDockerInterpreter extends Interpreter {
|
|||
return exit == 0;
|
||||
}
|
||||
|
||||
protected int runCommand(InterpreterOutput out, String ... command)
|
||||
protected int runCommand(InterpreterOutput out, String... command)
|
||||
throws IOException, InterruptedException {
|
||||
ProcessBuilder builder = new ProcessBuilder(command);
|
||||
builder.redirectErrorStream(true);
|
||||
|
|
@ -172,4 +172,4 @@ public class PythonDockerInterpreter extends Interpreter {
|
|||
int r = process.waitFor(); // Let the process finish.
|
||||
return r;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -24,4 +24,4 @@ limitations under the License.
|
|||
Example
|
||||
<pre># Run python interpreter with latest tensorflow image
|
||||
%python.docker activate gcr.io/tensorflow/tensorflow:latest</pre>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -93,4 +93,4 @@ public class PythonDockerInterpreterTest implements InterpreterOutputListener {
|
|||
public void onUpdate(InterpreterOutput out, byte[] output) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue