We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66283ac commit 27c9ed8Copy full SHA for 27c9ed8
kyuubi-server/src/main/scala/org/apache/kyuubi/server/api/v1/BatchesResource.scala
@@ -214,10 +214,10 @@ private[v1] class BatchesResource extends ApiRequestContext with Logging {
214
val ipAddress = fe.getIpAddress
215
request.setConf(
216
(request.getConf.asScala ++ Map(
217
+ KYUUBI_BATCH_RESOURCE_UPLOADED_KEY -> isResourceFromUpload.toString,
218
KYUUBI_CLIENT_IP_KEY -> ipAddress,
219
KYUUBI_SERVER_IP_KEY -> fe.host,
220
KYUUBI_SESSION_CONNECTION_URL_KEY -> fe.connectionUrl,
- KYUUBI_BATCH_RESOURCE_UPLOADED_KEY -> isResourceFromUpload.toString,
221
KYUUBI_SESSION_REAL_USER_KEY -> fe.getRealUser())).asJava)
222
val sessionHandle = sessionManager.openBatchSession(
223
userName,
0 commit comments