Fix: typo in log of broker (#17471)
Signed-off-by: rickif <rickif@qq.com>
This commit is contained in:
parent
208a475a9c
commit
3f77feb107
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue