adutra commented on code in PR #12406: URL: https://github.com/apache/iceberg/pull/12406#discussion_r1991498775
########## core/src/main/java/org/apache/iceberg/CatalogProperties.java: ########## @@ -32,6 +32,18 @@ private CatalogProperties() {} public static final String VIEW_DEFAULT_PREFIX = "view-default."; public static final String METRICS_REPORTER_IMPL = "metrics-reporter-impl"; + /** http proxy configuration for rest catalog */ + public static final String PROXY_ENABLED = "proxy-enabled"; + + public static final boolean PROXY_ENABLED_DEFAULT = false; + public static final String PROXY_HOSTNAME = "proxy.hostname"; + public static final String PROXY_PORT = "proxy.port"; + + public static final String PROXY_REQUIRES_CREDENTIALS = "proxy.requires-credentials"; Review Comment: This property could maybe be inferred from the presence (or absence) of `PROXY_USERNAME` and `PROXY_PASSWORD`. -- 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...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org