mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
change default value for pernote and peruser
This commit is contained in:
parent
787a366b25
commit
1f64e52ed2
1 changed files with 4 additions and 4 deletions
|
|
@ -113,14 +113,14 @@ public class InterpreterOption {
|
|||
}
|
||||
|
||||
public InterpreterOption() {
|
||||
this.perNote = null;
|
||||
this.perUser = null;
|
||||
this.perNote = SCOPED;
|
||||
this.perUser = SCOPED;
|
||||
remote = false;
|
||||
}
|
||||
|
||||
public InterpreterOption(boolean remote) {
|
||||
this.perNote = null;
|
||||
this.perUser = null;
|
||||
this.perNote = SCOPED;
|
||||
this.perUser = SCOPED;
|
||||
this.remote = remote;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue