Skip to content

Commit

Permalink
yunabe#58 - Continuing if processing the next file instead of returni…
Browse files Browse the repository at this point in the history
…ng if we encounter an error while reading a startup file
  • Loading branch information
jamdagni86 committed May 9, 2018
1 parent a0ca020 commit 8794fbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter/gojupyterscaffold/gojupyterscaffold.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func loadStartupScripts(execQueue *executeQueue, shell *shellSocket) {
code, err := ioutil.ReadFile(path.Join(profileDirPath, file))
if err != nil {
glog.Errorf("Error while loading startup file %s: %+v", file, err)
return
continue
}

req := &message{Content: &ExecuteRequest{Code: string(code)}}
Expand Down

0 comments on commit 8794fbb

Please sign in to comment.