From f0820968277866f8287b004a4213318225a524a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20J=C3=B8rgen=20Skogstad?= Date: Tue, 26 Nov 2024 20:02:50 +0100 Subject: [PATCH] chore(dev): Downgrade PostgreSQL minor version to match Azure (#1536) ## Description ## Related Issue(s) - #1520 ## Verification - [ ] **Your** code builds clean without any errors or warnings - [ ] Manual testing done (required) - [ ] Relevant automated test added (if you find this hard, leave it and we'll help out) ## Documentation - [ ] Documentation is updated (either in `docs`-directory, Altinnpedia or a separate linked PR in [altinn-studio-docs.](https://github.com/Altinn/altinn-studio-docs), if applicable) --- docker-compose-db-redis.yml | 2 +- .../Common/DialogApplication.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose-db-redis.yml b/docker-compose-db-redis.yml index e92b22d4e..f1d6de3c0 100644 --- a/docker-compose-db-redis.yml +++ b/docker-compose-db-redis.yml @@ -2,7 +2,7 @@ version: '3.9' services: dialogporten-postgres: - image: postgres:16.4 + image: postgres:16.3 restart: always command: postgres -c wal_level=logical environment: diff --git a/tests/Digdir.Domain.Dialogporten.Application.Integration.Tests/Common/DialogApplication.cs b/tests/Digdir.Domain.Dialogporten.Application.Integration.Tests/Common/DialogApplication.cs index 55568d1f0..060efb767 100644 --- a/tests/Digdir.Domain.Dialogporten.Application.Integration.Tests/Common/DialogApplication.cs +++ b/tests/Digdir.Domain.Dialogporten.Application.Integration.Tests/Common/DialogApplication.cs @@ -40,7 +40,7 @@ public class DialogApplication : IAsyncLifetime private ServiceProvider _rootProvider = null!; private ServiceProvider _fixtureRootProvider = null!; private readonly PostgreSqlContainer _dbContainer = new PostgreSqlBuilder() - .WithImage("postgres:16.4") + .WithImage("postgres:16.3") .Build(); public async Task InitializeAsync()