From d460192612c2c64c509dc48401f772b05ecc9f65 Mon Sep 17 00:00:00 2001 From: Bowen Liang Date: Wed, 18 Oct 2023 13:33:36 +0800 Subject: [PATCH] fix --- .../scala/org/apache/kyuubi/operation/ExecuteStatement.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyuubi-server/src/main/scala/org/apache/kyuubi/operation/ExecuteStatement.scala b/kyuubi-server/src/main/scala/org/apache/kyuubi/operation/ExecuteStatement.scala index a3015214392..5d42038d162 100644 --- a/kyuubi-server/src/main/scala/org/apache/kyuubi/operation/ExecuteStatement.scala +++ b/kyuubi-server/src/main/scala/org/apache/kyuubi/operation/ExecuteStatement.scala @@ -59,7 +59,7 @@ class ExecuteStatement( OperationLog.removeCurrentOperationLog() } - private val isTimeoutMonitorEnabled: Boolean = confOverlay.getOrElse( + private val isTimeoutMonitorEnabled: Boolean = confOverlay.getOrElse[String]( OPERATION_QUERY_TIMEOUT_MONITOR_ENABLED.key, OPERATION_QUERY_TIMEOUT_MONITOR_ENABLED.defaultValStr).toBoolean