Skip to content

Commit 77566c3

Browse files
Incorporate the fix to file ordering (#161)
1 parent 0bb74d2 commit 77566c3

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ lazy val plugin = (project in file("."))
2525
name := "arcane-stream-microsoft-synapse-link",
2626
idePackagePrefix := Some("com.sneaksanddata.arcane.microsoft_synapse_link"),
2727

28-
libraryDependencies += "com.sneaksanddata" % "arcane-framework_3" % "1.1.2",
28+
libraryDependencies += "com.sneaksanddata" % "arcane-framework_3" % "1.1.9",
2929
libraryDependencies += "io.netty" % "netty-tcnative-boringssl-static" % "2.0.65.Final",
3030

3131
// bugfix for upgrade header

docker-compose.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,14 +119,16 @@ services:
119119
- ./bootstrap-lk.py:/bootstrap-lk.py
120120
command: [ "/bin/sh", "-c", "pip install requests && python /bootstrap-lk.py" ]
121121
lakekeeper_db:
122-
image: bitnami/postgresql:16.3.0
122+
image: postgres:16.3-bullseye
123123
network_mode: host
124124
restart: always
125125
environment:
126-
- POSTGRESQL_USERNAME=postgres
127-
- POSTGRESQL_PASSWORD=postgres
128-
- POSTGRESQL_DATABASE=postgres
126+
- POSTGRES_USERNAME=postgres
127+
- POSTGRES_PASSWORD=postgres
128+
- POSTGRES_HOST_AUTH_METHOD=trust
129+
- POSTGRES_DB=postgres
129130
- PGHOST=localhost
131+
- PGPORT=5432
130132
healthcheck:
131133
test: [ "CMD-SHELL", "pg_isready -U postgres -p 5432 -d postgres" ]
132134
interval: 2s

0 commit comments

Comments
 (0)