Skip to content

Commit

Permalink
chore: apply suggestions from CR
Browse files Browse the repository at this point in the history
  • Loading branch information
WenyXu committed Dec 28, 2023
1 parent 585c270 commit f408b70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests-integration/fixtures/kafka/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
docker compose -f docker-compose-standalone.yml up kafka -d
```

## Lists running containers
## Lists running services
```bash
docker compose -f docker-compose-standalone.yml ps
```
Expand All @@ -13,7 +13,7 @@ docker compose -f docker-compose-standalone.yml ps
docker compose -f docker-compose-standalone.yml stop kafka
```

## Stops and removes a standalone kafka
## Stops and removes the standalone kafka
```bash
docker compose -f docker-compose-standalone.yml down kafka
```
2 changes: 1 addition & 1 deletion tests/runner/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ async fn main() {
broker_endpoints: args
.kafka_wal_broker_endpoints
.split(',')
.map(|s| s.to_string())
.map(|s| s.trim().to_string())
.collect(),
},
};
Expand Down

0 comments on commit f408b70

Please sign in to comment.