Skip to content

Commit

Permalink
tests(integration): update kinesis docker image (#368)
Browse files Browse the repository at this point in the history
* tests(integration): update kinesis docker image

* Update docker-compose.yml

---------

Co-authored-by: Nolan Emirot <[email protected]>
  • Loading branch information
emirot and Nolan Emirot authored Feb 28, 2025
1 parent cf113c6 commit 646fce2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@ services:
]

kinesis:
image: saidsef/aws-kinesis-local
image: localstack/localstack
ports:
- 4567:4567
- "127.0.0.1:4566:4566" # LocalStack Gateway
healthcheck:
test: nc -z localhost 4567 || exit -1
test: ["CMD", "curl", "-f", "http://localhost:4566"]
start_period: 15s
interval: 5s
timeout: 10s
Expand Down
2 changes: 1 addition & 1 deletion test/integration/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"gcp_project_id": "test-project-id"
},
"kinesis": {
"override_host": "http://kinesis:4567",
"override_host": "http://kinesis:4566",
"max_retries": 3,
"streams": {
"V": "test_V",
Expand Down
2 changes: 1 addition & 1 deletion test/integration/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const (
zmqAddr = "tcp://app:5284"
mqttBroker = "mqtt:1883"
mqttTopic = "telemetry/device-1/v/VehicleName"
kinesisHost = "http://kinesis:4567"
kinesisHost = "http://kinesis:4566"

kinesisStreamName = "test_V"
kinesisConnectivityStreamName = "test_connectivity"
Expand Down

0 comments on commit 646fce2

Please sign in to comment.