mnmhouse edited a comment on pull request #4115:
URL: https://github.com/apache/zeppelin/pull/4115#issuecomment-840972116


   @cuspymd  It is easy to reappear this question ,  copy this attachment  
[https://issues.apache.org/jira/secure/attachment/13025447/interpreter.json 
](url)  to conf  dir and restart  zeppelin server  .
   
   becase, some in this interpreter.json ,i add some new Interpreter  which 
include some dependencies ,so InterpreterSetting  class  will run  
loadInterpreterDependencies() method , this method include a thread       
trigger the interpreterSettingManager.saveToFile() operatio
   
   
   `  private void loadInterpreterDependencies() {
   
       setStatus(Status.DOWNLOADING_DEPENDENCIES);
       setErrorReason(null);
       Thread t = new Thread() {
         @Override
         public void run() {
          .......
           try {
             interpreterSettingManager.saveToFile();
           } catch (IOException e) {
             LOGGER.error("Fail to save interpreter.json", e);
           }
         }
       };
   
       t.start();`
   
   [Uploading interpreter.json…]()
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to