jongyoul commented on code in PR #4657:
URL: https://github.com/apache/zeppelin/pull/4657#discussion_r1323115112
##########
livy/src/main/java/org/apache/zeppelin/livy/BaseLivyInterpreter.java:
##########
@@ -776,15 +780,22 @@ private static class CreateSessionRequest {
@SerializedName("proxyUser")
public final String user;
public final Map<String, String> conf;
+ public final Map<String, String> params;
- CreateSessionRequest(String kind, String user, Map<String, String> conf) {
+ CreateSessionRequest(String kind, String user, Map<String, String> conf,
Map<String, String> params) {
this.kind = kind;
this.user = user;
this.conf = conf;
+ this.params = params;
}
public String toJson() {
- return gson.toJson(this);
+ JsonObject jsonObject = new JsonObject();
Review Comment:
You might miss `import` statement for `JsonObject`?
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]