morningman commented on code in PR #50839: URL: https://github.com/apache/doris/pull/50839#discussion_r2099658644
########## fe/fe-core/src/main/java/org/apache/doris/datasource/ExternalCatalog.java: ########## @@ -183,6 +183,17 @@ public ExternalCatalog(long catalogId, String name, InitCatalogLog.Type logType, this.comment = Strings.nullToEmpty(comment); } + /** + * Initializes the PreExecutionAuthenticator instance. + * This method ensures that the authenticator is created only once in a thread-safe manner. + * If additional authentication logic is required, it should be extended and implemented in subclasses. + */ + public synchronized void initPreExecutionAuthenticator() { Review Comment: ```suggestion protected synchronized void initPreExecutionAuthenticator() { ``` -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org