Skip to content

Commit 1f64e52

Browse files
cloverheartsjongyoul
authored andcommitted
change default value for pernote and peruser
1 parent 787a366 commit 1f64e52

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/InterpreterOption.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,14 +113,14 @@ public List<String> getUsers() {
113113
}
114114

115115
public InterpreterOption() {
116-
this.perNote = null;
117-
this.perUser = null;
116+
this.perNote = SCOPED;
117+
this.perUser = SCOPED;
118118
remote = false;
119119
}
120120

121121
public InterpreterOption(boolean remote) {
122-
this.perNote = null;
123-
this.perUser = null;
122+
this.perNote = SCOPED;
123+
this.perUser = SCOPED;
124124
this.remote = remote;
125125
}
126126

0 commit comments

Comments
 (0)