This is an automated email from the ASF dual-hosted git repository.
wanglijie pushed a commit to branch release-1.17
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.17 by this push:
new 6efc2ac5b56 [hotfix][runtime][security] Change the log level to DEBUG
in HBaseDelegationTokenProvider#getHBaseConfiguration
6efc2ac5b56 is described below
commit 6efc2ac5b56e172cb9061cebef9069e31ae24d90
Author: Lijie Wang <[email protected]>
AuthorDate: Wed May 10 15:11:57 2023 +0800
[hotfix][runtime][security] Change the log level to DEBUG in
HBaseDelegationTokenProvider#getHBaseConfiguration
This change is to avoid always printing `ClassNotFoundException(INFO)` in
jobmanager log. See comments in FLINK-25909 for details.
This closes #22559
---
.../runtime/security/token/hadoop/HBaseDelegationTokenProvider.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/flink-runtime/src/main/java/org/apache/flink/runtime/security/token/hadoop/HBaseDelegationTokenProvider.java
b/flink-runtime/src/main/java/org/apache/flink/runtime/security/token/hadoop/HBaseDelegationTokenProvider.java
index bb7f87f4e71..0a7ec2d3903 100644
---
a/flink-runtime/src/main/java/org/apache/flink/runtime/security/token/hadoop/HBaseDelegationTokenProvider.java
+++
b/flink-runtime/src/main/java/org/apache/flink/runtime/security/token/hadoop/HBaseDelegationTokenProvider.java
@@ -81,7 +81,7 @@ public class HBaseDelegationTokenProvider implements
DelegationTokenProvider {
| IllegalAccessException
| ClassNotFoundException
| NoClassDefFoundError e) {
- LOG.info(
+ LOG.debug(
"HBase is not available (not packaged with this
application): {} : \"{}\".",
e.getClass().getSimpleName(),
e.getMessage());