Skip to content

Commit

Permalink
Fix the YAML format error in latest image (apache#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
BewareMyPower authored Oct 30, 2024
1 parent 54e529a commit 2491a5a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci-pr-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:
timeout-minutes: 60
strategy:
matrix:
os: [ubuntu-20.04, macos-12]
# TODO: support build on macos-12
os: [ubuntu-20.04]

steps:
- name: checkout
Expand Down
14 changes: 7 additions & 7 deletions tests/blue-green/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ services:
environment:
- PULSAR_MEM=-Xms128m -Xmx128m -XX:MaxDirectMemorySize=56m
command: >
bin/pulsar initialize-cluster-metadata \
--cluster cluster-a \
--zookeeper zookeeper:2181 \
--configuration-store zookeeper:2181 \
--web-service-url http://broker-1:8080 \
--broker-service-url pulsar://broker-1:6650
bin/pulsar initialize-cluster-metadata
--cluster cluster-a
--zookeeper zookeeper:2181
--configuration-store zookeeper:2181
--web-service-url http://broker-1:8080
--broker-service-url pulsar://broker-1:6650
depends_on:
zookeeper:
condition: service_healthy
Expand Down Expand Up @@ -149,4 +149,4 @@ services:
condition: service_healthy
bookie:
condition: service_started
command: bash -c "bin/apply-config-from-env.py conf/broker.conf && exec bin/pulsar broker"
command: bash -c "bin/apply-config-from-env.py conf/broker.conf && exec bin/pulsar broker"
13 changes: 6 additions & 7 deletions tests/extensibleLM/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,11 @@ services:
environment:
- PULSAR_MEM=-Xms128m -Xmx128m -XX:MaxDirectMemorySize=56m
command: >
bin/pulsar initialize-cluster-metadata \
--cluster cluster-a \
--zookeeper zookeeper:2181 \
--configuration-store zookeeper:2181 \
--web-service-url http://broker-1:8080 \
--broker-service-url pulsar://broker-1:6650
bin/pulsar initialize-cluster-metadata --cluster cluster-a
--zookeeper zookeeper:2181
--configuration-store zookeeper:2181
--web-service-url http://broker-1:8080
--broker-service-url pulsar://broker-1:6650
depends_on:
zookeeper:
condition: service_healthy
Expand Down Expand Up @@ -151,4 +150,4 @@ services:
condition: service_healthy
bookie:
condition: service_started
command: bash -c "bin/apply-config-from-env.py conf/broker.conf && exec bin/pulsar broker"
command: bash -c "bin/apply-config-from-env.py conf/broker.conf && exec bin/pulsar broker"

0 comments on commit 2491a5a

Please sign in to comment.