1
0

[MINOR] Correct the logs of enable/not-enable async cleaner service. (#3271)

Co-authored-by: yuezhang <yuezhang@freewheel.tv>
This commit is contained in:
zhangyue19921010
2021-07-15 00:08:29 +08:00
committed by GitHub
parent 2debb9b3ed
commit c1810f210e

View File

@@ -61,7 +61,7 @@ class AsyncCleanerService extends HoodieAsyncService {
asyncCleanerService = new AsyncCleanerService(writeClient, instantTime); asyncCleanerService = new AsyncCleanerService(writeClient, instantTime);
asyncCleanerService.start(null); asyncCleanerService.start(null);
} else { } else {
LOG.info("Auto cleaning is not enabled. Not running cleaner now"); LOG.info("Async auto cleaning is not enabled. Not running cleaner now");
} }
return asyncCleanerService; return asyncCleanerService;
} }