Skip to content

Commit e977dd3

Browse files
committed
fix auth to elasticsearch
1 parent 2105e0d commit e977dd3

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/ci_workflow.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,7 @@ jobs:
4747
- name: Install dependencies
4848
run: uv sync
4949
- name: start elasticsearch container
50-
run: docker-compose up -d elasticsearch --wait &
51-
env:
52-
ELASTIC_PASSWORD: changeme
50+
run: docker-compose up -d elasticsearch --wait --wait-timeout 30 &
5351
- name: Test with pytest
5452
run: uv run pytest --capture=no
5553

@@ -78,8 +76,6 @@ jobs:
7876
- name: Install Meltano plugins
7977
run: meltano install --clean
8078
- name: start elasticsearch container
81-
run: docker-compose up -d elasticsearch --wait &
82-
env:
83-
ELASTIC_PASSWORD: changeme
79+
run: docker-compose up -d elasticsearch --wait --wait-timeout 30 &
8480
- name: smoke-test-tap
8581
run: meltano run tap-smoke-test target-elasticsearch

meltano.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ plugins:
2121
namespace: target_elasticsearch
2222
pip_url: -e .
2323
config:
24-
username: elastic
25-
password: changeme
2624
index_format: "ecs-{{ stream_name }}-an-{{ foo }}-{{ current_timestamp_daily }}"
2725
stream_maps: # use stream maps to do more complex base record manipulation
2826
animals:

0 commit comments

Comments
 (0)