This is an automated email from the ASF dual-hosted git repository.

snazy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git


The following commit(s) were added to refs/heads/main by this push:
     new 684406994 Fix RDS devservices config + adopt for `:polaris-admin:test` 
(#2723)
684406994 is described below

commit 684406994d1eb952e83b3bd3fd65b55c2fd2681a
Author: Robert Stupp <[email protected]>
AuthorDate: Tue Sep 30 15:57:07 2025 +0200

    Fix RDS devservices config + adopt for `:polaris-admin:test` (#2723)
    
    Changes:
    * Disables devservices for `:polaris-admin` tests as well, which is 
necessary to _not_ spin up test containers.
    * Use the explicit devservices-config as everywhere else.
    
    The first bullet point can cause excessive memory usage, especially with 
more test classes, eventually killing the whole GH runner.
---
 runtime/admin/src/main/resources/application.properties    | 5 ++++-
 runtime/defaults/src/main/resources/application.properties | 5 +----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/runtime/admin/src/main/resources/application.properties 
b/runtime/admin/src/main/resources/application.properties
index a15c5b138..393d12094 100644
--- a/runtime/admin/src/main/resources/application.properties
+++ b/runtime/admin/src/main/resources/application.properties
@@ -32,8 +32,11 @@ quarkus.container-image.group=apache
 quarkus.container-image.name=polaris-admin-tool
 quarkus.container-image.additional-tags=latest
 quarkus.datasource.db-kind=postgresql
-#https://docs.quarkiverse.io/quarkus-amazon-services/dev/amazon-rds.html#_configuring_rds_clients
+# if set to true it will try to start localstack at build and run time for the 
local environment
+# 
https://docs.quarkiverse.io/quarkus-amazon-services/dev/amazon-rds.html#_configuration_reference
 for more details
+quarkus.rds.devservices.enabled=false
 quarkus.rds.sync-client.type=apache
+
 # ---- Runtime Configuration ----
 # Below are default values for properties that can be changed in runtime.
 
diff --git a/runtime/defaults/src/main/resources/application.properties 
b/runtime/defaults/src/main/resources/application.properties
index 83704a791..def1694c7 100644
--- a/runtime/defaults/src/main/resources/application.properties
+++ b/runtime/defaults/src/main/resources/application.properties
@@ -125,14 +125,11 @@ polaris.persistence.type=in-memory
 # polaris.persistence.type=relational-jdbc
 
 polaris.secrets-manager.type=in-memory
-# disable localstack
 # if set to true it will try to start localstack at build and run time for the 
local environment
 # 
https://docs.quarkiverse.io/quarkus-amazon-services/dev/amazon-rds.html#_configuration_reference
 for more details
-quarkus.devservices.enabled=false
+quarkus.rds.devservices.enabled=false
 quarkus.rds.sync-client.type=apache
 
-
-
 polaris.file-io.type=default
 
 polaris.event-listener.type=no-op

Reply via email to