Fix: typo in log of broker (#17471)

Signed-off-by: rickif <rickif@qq.com>
This commit is contained in:
rickif 2023-02-07 11:16:50 +08:00 committed by GitHub
parent 208a475a9c
commit 3f77feb107
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ public class HdfsService {
public void listPath(TBrokerListPathRequest request, List<TBrokerFileStatus> fileStatuses, boolean skipDir,
boolean fileNameOnly) throws UserException {
LOG.info("receive a delete path request, path: {}", request.path);
LOG.info("receive a list path request, path: {}", request.path);
List<TBrokerFileStatus> allFileStatuses = fileSystemManager.listPath(request.path, fileNameOnly,
request.properties);

View File

@ -64,7 +64,7 @@ public class HDFSBrokerServiceImpl implements TFileBrokerService.Iface {
@Override
public TBrokerListResponse listPath(TBrokerListPathRequest request)
throws TException {
logger.info("receive a delete path request, path: " + request.path);
logger.info("receive a list path request, path: " + request.path);
TBrokerListResponse response = new TBrokerListResponse();
try {
boolean fileNameOnly = false;