You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by ah...@apache.org on 2016/11/29 16:31:51 UTC

zeppelin git commit: [ZEPPELIN-1714] Build error of scio Intepreter on Centos

Repository: zeppelin
Updated Branches:
  refs/heads/master 9db840c65 -> 234c42bdb


[ZEPPELIN-1714] Build error of scio Intepreter on Centos

### What is this PR for?
This PR fixes build error of scio Intepreter on CentOS.

### What type of PR is it?
Bug Fix

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-1714

### How should this be tested?
Run `mvn clean package -DskipTest' on CentOS

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: astroshim <hs...@nflabs.com>

Closes #1685 from astroshim/fix/scio-builderror and squashes the following commits:

330f38d [astroshim] add scala prefix


Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/234c42bd
Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/234c42bd
Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/234c42bd

Branch: refs/heads/master
Commit: 234c42bdb1a9494c9c2a36e6bbe3bec7be7104cc
Parents: 9db840c
Author: astroshim <hs...@nflabs.com>
Authored: Sat Nov 26 15:39:44 2016 +0900
Committer: ahyoungryu <ah...@apache.org>
Committed: Wed Nov 30 01:31:39 2016 +0900

----------------------------------------------------------------------
 scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/234c42bd/scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala
----------------------------------------------------------------------
diff --git a/scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala b/scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala
index 00d011f..f340081 100644
--- a/scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala
+++ b/scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala
@@ -161,7 +161,7 @@ class ScioInterpreter(property: Properties) extends Interpreter(property) {
     innerOut.setInterpreterOutput(context.out)
 
     try {
-      import tools.nsc.interpreter.Results._
+      import scala.tools.nsc.interpreter.Results._
       REPL.interpret(code) match {
         case Success => {
           logger.debug(s"Successfully executed `$code` in $paragraphId")