dimas-b commented on code in PR #3340: URL: https://github.com/apache/polaris/pull/3340#discussion_r2670291390
########## runtime/defaults/src/main/resources/application-cli.properties: ########## @@ -0,0 +1,42 @@ +# +# 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. +# + +# ---- CLI Profile Configuration ---- +# This file is automatically loaded when running with -Dquarkus.profile=cli +# It contains configuration specific to the Polaris Admin CLI commands +# +# WARNING: Only RUNTIME configuration properties are allowed in this profile file! +# Build-time properties (those marked as "fixed at build-time" in Quarkus docs) MUST be +# defined in the base application.properties file. Profile-specific files like this one +# can only override runtime configuration values. +# +# Setting build-time properties here will have NO EFFECT since the profile is activated +# after the application has already been built. Build-time properties are baked into the +# application during the build phase and cannot be changed at runtime. +# +# See: https://quarkus.io/guides/config-reference#build-time-configuration + +# Application identity +quarkus.application.name=Apache Polaris Admin Tool (incubating) +quarkus.banner.enabled=false + +# Logging configuration - suppress verbose output for CLI +quarkus.log.level=WARN Review Comment: ah, sorry, I missed that. Current code is fine for now :+1: -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
