Merge pull request #387 from maghis/patch-1

Fixed typo in terminate log message
This commit is contained in:
Justin Pfifer 2018-08-30 08:06:47 -07:00 committed by GitHub
commit 70f937b68b
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);