Skip to content

Commit

Permalink
Fix build for external contributors (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
akorneta authored Nov 13, 2023
1 parent 3146f9b commit accd398
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 4 additions & 3 deletions tw-tkms-starter/src/test/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,13 @@ spring:
datasource:
url: "jdbc:postgresql://${POSTGRES_TCP_HOST:localhost}:${POSTGRES_TCP_5432}/postgres"
username: "postgres"
password: "example-password-change-me"
flyway:
locations: "classpath:db/migration/postgres"
config:
activate:
on-profile: postgres

tw-tkms:
database-dialect: POSTGRES
delete-batch-sizes: "51, 11, 5, 1"
Expand Down Expand Up @@ -102,7 +103,7 @@ tw-tkms:
earliest-visible-messages:
enabled: true
look-back-period: 10s
table-name: earliestmessage.tw_tkms_earliest_visible_messages
table-name: earliestmessage.tw_tkms_earliest_visible_messages
shards-count: 2
table-base-name: earliestmessage.outgoing_message
monitoring:
Expand All @@ -111,6 +112,6 @@ tw-tkms:
1:
earliest-visible-messages:
table-name: earliestmessage.tw_tkms_earliest_visible_messages

tw-tkms-test:
test-topic: TestTopicEarliestMessage
4 changes: 3 additions & 1 deletion tw-tkms-starter/src/test/resources/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ services:
--character-set-server=utf8mb4
--collation-server=utf8mb4_unicode_ci --transaction-isolation=READ-COMMITTED --innodb_autoinc_lock_mode=2"
postgres:
image: docker.tw.ee/postgres12
image: postgres:12-bullseye
ports:
- "5432"
environment:
POSTGRES_PASSWORD: example-password-change-me

0 comments on commit accd398

Please sign in to comment.