mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Fix hirb path
This commit is contained in:
parent
39dddb827f
commit
57ebad8d4c
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ public class HbaseInterpreter extends Interpreter {
|
|||
List<String> paths = new ArrayList<>(Arrays.asList(abs_ruby_src.toAbsolutePath().toString()));
|
||||
this.scriptingContainer.setLoadPaths(paths);
|
||||
|
||||
Path abs_hirb_path = Paths.get(hbase_home, ruby_src, "irb/hirb.rb");
|
||||
Path abs_hirb_path = Paths.get(hbase_home, "bin/hirb.rb");
|
||||
try {
|
||||
FileInputStream fis = new FileInputStream(abs_hirb_path.toFile());
|
||||
this.scriptingContainer.runScriptlet(fis, "hirb.rb");
|
||||
|
|
|
|||
Loading…
Reference in a new issue