pingtimeout commented on code in PR #1532: URL: https://github.com/apache/polaris/pull/1532#discussion_r2084072441
########## quarkus/service/src/main/java/org/apache/polaris/service/quarkus/config/QuarkusReadinessConfiguration.java: ########## @@ -0,0 +1,36 @@ +/* + * 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. + */ +package org.apache.polaris.service.quarkus.config; + +import io.quarkus.runtime.annotations.StaticInitSafe; +import io.smallrye.config.ConfigMapping; +import io.smallrye.config.WithDefault; + +@StaticInitSafe +@ConfigMapping(prefix = "polaris.readiness") +public interface QuarkusReadinessConfiguration { + + /** + * Setting this to {@code true} means that Polaris will start up even if severe security risks + * have been detected, accepting the risk of denial-of-service, data-loss, corruption and other + * risks. + */ + @WithDefault("false") + boolean ignoreSevereIssues(); Review Comment: @eric-maynard "Severe" is a standard term to denote the most important information. See [java.util.logging.Level](https://docs.oracle.com/javase/8/docs/api/java/util/logging/Level.html) for an example of how it is used in the context of logs. -- 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: issues-unsubscr...@polaris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org