From 3ff8b21208b08930eee06b20b05d9f5c6ac4930e Mon Sep 17 00:00:00 2001 From: "Robert (Bobby) Evans" Date: Tue, 10 May 2022 14:37:47 -0500 Subject: [PATCH] Fix minor nit --- .../src/main/scala/com/nvidia/spark/rapids/RapidsConf.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql-plugin/src/main/scala/com/nvidia/spark/rapids/RapidsConf.scala b/sql-plugin/src/main/scala/com/nvidia/spark/rapids/RapidsConf.scala index adf5206cb02..2d86f4ed315 100644 --- a/sql-plugin/src/main/scala/com/nvidia/spark/rapids/RapidsConf.scala +++ b/sql-plugin/src/main/scala/com/nvidia/spark/rapids/RapidsConf.scala @@ -1696,7 +1696,7 @@ class RapidsConf(conf: Map[String, String]) extends Logging { case "NATIVE" => ParquetFooterReaderType.NATIVE case "JAVA" => ParquetFooterReaderType.JAVA case other => - throw new IllegalArgumentException(s"Internal Error $other is not a supported for " + + throw new IllegalArgumentException(s"Internal Error $other is not supported for " + s"${PARQUET_READER_FOOTER_TYPE.key}") } }