Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jaguililla committed Sep 13, 2024
1 parent f1f6890 commit 9e59bc7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
- "15432:5432"

kafka:
image: docker.io/apache/kafka:3.7.0
image: docker.io/apache/kafka-native:3.8.0
environment:
CLUSTER_ID: 4L6g3nShT-eMCtK--X86sw
KAFKA_NODE_ID: 1
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</parent>

<artifactId>appointments</artifactId>
<version>0.3.7</version>
<version>0.3.8</version>

<name>Appointments</name>
<description>Application to create appointments (REST API)</description>
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ management.endpoints.jmx.exposure.exclude: "*"

spring:
threads.virtual.enabled: true

datasource:
url: ${JDBC_URL:jdbc:postgresql://localhost:15432/local}
username: ${JDBC_USERNAME:root}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
class ApplicationIT {

static PostgreSQLContainer<?> postgres = new PostgreSQLContainer<>("postgres:16-alpine");
static KafkaContainer kafka = new KafkaContainer("apache/kafka:3.7.0");
static KafkaContainer kafka = new KafkaContainer("apache/kafka:3.8.0");

private final TestTemplate client;
@Autowired
Expand Down

0 comments on commit 9e59bc7

Please sign in to comment.