Skip to content

Commit a32c3dc

Browse files
authored
Use rest shorthand in conftest.py (#2289)
# Rationale for this change Added this wayyyy back: apache/iceberg#5570. I think this is nicer than the full Java classpath # Are these changes tested? # Are there any user-facing changes? <!-- In the case of user-facing changes, please add the changelog label. -->
1 parent 2a11b25 commit a32c3dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2519,7 +2519,7 @@ def spark() -> "SparkSession":
25192519
.config("spark.default.parallelism", "1")
25202520
.config("spark.sql.extensions", "org.apache.iceberg.spark.extensions.IcebergSparkSessionExtensions")
25212521
.config("spark.sql.catalog.integration", "org.apache.iceberg.spark.SparkCatalog")
2522-
.config("spark.sql.catalog.integration.catalog-impl", "org.apache.iceberg.rest.RESTCatalog")
2522+
.config("spark.sql.catalog.integration.type", "rest")
25232523
.config("spark.sql.catalog.integration.cache-enabled", "false")
25242524
.config("spark.sql.catalog.integration.uri", "http://localhost:8181")
25252525
.config("spark.sql.catalog.integration.io-impl", "org.apache.iceberg.aws.s3.S3FileIO")

0 commit comments

Comments
 (0)