Fixed typo in terminate log message

This commit is contained in:
Massimo Andreasi Bassi 2018-08-30 10:57:57 -04:00 committed by GitHub
parent 03af17f6ee
commit b6472df41a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -146,7 +146,7 @@ public class MultiLangDaemon implements Callable<Integer> {
Runtime.getRuntime().addShutdownHook(new Thread() {
@Override
public void run() {
log.info("Process terminanted, will initiate shutdown.");
log.info("Process terminated, will initiate shutdown.");
try {
Future<Void> fut = daemon.scheduler.requestShutdown();
fut.get(shutdownGraceMillis, TimeUnit.MILLISECONDS);