This is an automated email from the ASF dual-hosted git repository.
dimas 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 847f51e34 Move remaining build-time server properties to
runtime/defaults (#3341)
847f51e34 is described below
commit 847f51e348c8a16598721ea0f6ee82d0d171bc19
Author: Dmitri Bourlatchkov <[email protected]>
AuthorDate: Mon Jan 5 13:31:42 2026 -0500
Move remaining build-time server properties to runtime/defaults (#3341)
The `runtime/defaults` module is meant as a holder of default
Polaris Server runtime properties.
This change moves a few remaining properties from the
`application.properties`
file under `runtime/server` into `runtime/defaults` to avoid any possible
confusion regarding the location of effective server properties.
Note: The Admin tool has its own `application.properties` file.
---
.../src/main/resources/application.properties | 9 ++++++
.../src/main/resources/application.properties | 32 ----------------------
2 files changed, 9 insertions(+), 32 deletions(-)
diff --git a/runtime/defaults/src/main/resources/application.properties
b/runtime/defaults/src/main/resources/application.properties
index 6cccec578..355abd756 100644
--- a/runtime/defaults/src/main/resources/application.properties
+++ b/runtime/defaults/src/main/resources/application.properties
@@ -23,6 +23,15 @@
# Cf. https://quarkus.io/guides/all-config
quarkus.banner.path=/org/apache/polaris/service/banner.txt
+quarkus.application.name=Apache Polaris Server (incubating)
+
+quarkus.container-image.build=false
+quarkus.container-image.push=false
+quarkus.container-image.registry=docker.io
+quarkus.container-image.group=apache
+quarkus.container-image.name=polaris
+quarkus.container-image.additional-tags=latest
+
quarkus.http.auth.basic=false
quarkus.http.enable-compression=true
quarkus.http.enable-decompression=true
diff --git a/runtime/server/src/main/resources/application.properties
b/runtime/server/src/main/resources/application.properties
deleted file mode 100644
index cd9d74dec..000000000
--- a/runtime/server/src/main/resources/application.properties
+++ /dev/null
@@ -1,32 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
-
-# ---- Build-time configuration ----
-# Build-time properties take effect when Quarkus processes java classes
-# and creates Polaris jars. These properties cannot be overridden in runtime.
-# Cf. https://quarkus.io/guides/all-config
-
-quarkus.application.name=Apache Polaris Server (incubating)
-
-quarkus.container-image.build=false
-quarkus.container-image.push=false
-quarkus.container-image.registry=docker.io
-quarkus.container-image.group=apache
-quarkus.container-image.name=polaris
-quarkus.container-image.additional-tags=latest