We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c6a187 commit 76b95e5Copy full SHA for 76b95e5
2 files changed
crates/catalog/rest/testdata/rest_catalog/docker-compose.yaml
@@ -20,7 +20,7 @@ networks:
20
21
services:
22
rest:
23
- image: apache/iceberg-rest-fixture
+ image: apache/iceberg-rest-fixture:1.9.2
24
environment:
25
- AWS_ACCESS_KEY_ID=admin
26
- AWS_SECRET_ACCESS_KEY=password
crates/test_utils/src/docker.rs
@@ -103,7 +103,7 @@ impl DockerCompose {
103
"-p",
104
self.project_name.as_str(),
105
"logs",
106
- "spark-iceberg"
+ "spark-iceberg",
107
]);
108
run_command(cmd, "Docker compose logs");
109
panic!("Docker compose up failed!")
@@ -134,7 +134,6 @@ impl DockerCompose {
134
if !ret {
135
panic!("Failed to stop docker compose")
136
}
137
-
138
139
140
pub fn get_container_ip(&self, service_name: impl AsRef<str>) -> IpAddr {
0 commit comments