Skip to content

Commit 76b95e5

Browse files
committed
Format
1 parent 3c6a187 commit 76b95e5

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

crates/catalog/rest/testdata/rest_catalog/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ networks:
2020

2121
services:
2222
rest:
23-
image: apache/iceberg-rest-fixture
23+
image: apache/iceberg-rest-fixture:1.9.2
2424
environment:
2525
- AWS_ACCESS_KEY_ID=admin
2626
- AWS_SECRET_ACCESS_KEY=password

crates/test_utils/src/docker.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ impl DockerCompose {
103103
"-p",
104104
self.project_name.as_str(),
105105
"logs",
106-
"spark-iceberg"
106+
"spark-iceberg",
107107
]);
108108
run_command(cmd, "Docker compose logs");
109109
panic!("Docker compose up failed!")
@@ -134,7 +134,6 @@ impl DockerCompose {
134134
if !ret {
135135
panic!("Failed to stop docker compose")
136136
}
137-
138137
}
139138

140139
pub fn get_container_ip(&self, service_name: impl AsRef<str>) -> IpAddr {

0 commit comments

Comments
 (0)