File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
plugin/trino-iceberg/src/test/java/io/trino/plugin/iceberg/catalog/rest Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 34
34
import static io .airlift .http .client .StaticBodyGenerator .createStaticBodyGenerator ;
35
35
import static io .airlift .http .client .StatusResponseHandler .createStatusResponseHandler ;
36
36
import static io .airlift .http .client .StringResponseHandler .createStringResponseHandler ;
37
- import static io .trino .testing .TestingProperties .getDockerImagesVersion ;
38
37
import static java .nio .charset .StandardCharsets .UTF_8 ;
39
38
import static java .util .Objects .requireNonNull ;
40
39
@@ -56,8 +55,7 @@ public TestingPolarisCatalog(String warehouseLocation)
56
55
{
57
56
this .warehouseLocation = requireNonNull (warehouseLocation , "warehouseLocation is null" );
58
57
59
- // TODO: Use the official docker image once Polaris community provides it
60
- polarisCatalog = new GenericContainer <>("ghcr.io/trinodb/testing/polaris-catalog:" + getDockerImagesVersion ());
58
+ polarisCatalog = new GenericContainer <>("apache/polaris:1.0.0-incubating" );
61
59
polarisCatalog .addExposedPort (POLARIS_PORT );
62
60
polarisCatalog .withFileSystemBind (warehouseLocation , warehouseLocation , BindMode .READ_WRITE );
63
61
polarisCatalog .waitingFor (new LogMessageWaitStrategy ().withRegEx (".*Apache Polaris Server.* started.*" ));
You can’t perform that action at this time.
0 commit comments