YARN-11540. Fix typo: form -> from (#5861). Contributed by Seokchan Yoon.

Reviewed-by: Tao Li <tomscut@apache.org>
Signed-off-by: Ayush Saxena <ayushsaxena@apache.org>
This commit is contained in:
yoonsch217 2023-07-21 04:08:19 +09:00 committed by GitHub
parent 80fefd093f
commit fbe9a29246
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -818,7 +818,7 @@ private static Map<ApplicationId, Credentials> parseCredentials(
} }
if (LOG.isDebugEnabled()) { if (LOG.isDebugEnabled()) {
for (Map.Entry<ApplicationId, Credentials> entry : map.entrySet()) { for (Map.Entry<ApplicationId, Credentials> entry : map.entrySet()) {
LOG.debug("Retrieved credentials form RM for {}: {}", LOG.debug("Retrieved credentials from RM for {}: {}",
entry.getKey(), entry.getValue().getAllTokens()); entry.getKey(), entry.getValue().getAllTokens());
} }
} }