From 863486e50d8374f1559eb5928c6b20f3655299ef Mon Sep 17 00:00:00 2001 From: Hongze Zhang Date: Thu, 15 Aug 2024 13:27:53 +0800 Subject: [PATCH] fixup --- .../gluten/backendsapi/velox/VeloxListenerApi.scala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxListenerApi.scala b/backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxListenerApi.scala index 1519ecb8ab22..760877af773f 100644 --- a/backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxListenerApi.scala +++ b/backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxListenerApi.scala @@ -48,8 +48,8 @@ class VeloxListenerApi extends ListenerApi with Logging { if (!driverInitialized.compareAndSet(false, true)) { // Make sure we call the static initializers only once. logInfo( - "Skip rerunning static initializers since they are already called." + - " It's probably because you are creating a new SparkSession.") + "Skip rerunning static initializers since they are only supposed to run once." + + " You see this message probably because are creating a new SparkSession.") return } @@ -72,8 +72,8 @@ class VeloxListenerApi extends ListenerApi with Logging { if (!executorInitialized.compareAndSet(false, true)) { // Make sure we call the static initializers only once. logInfo( - "Skip rerunning static initializers since they are already called." + - " It's probably because you are creating a new SparkSession.") + "Skip rerunning static initializers since they are only supposed to run once." + + " You see this message probably because are creating a new SparkSession.") return } val conf = pc.conf