From 12f59d56d6e46dd334e3ce4a053dfb27b5411ea5 Mon Sep 17 00:00:00 2001 From: Kengo Takahara Date: Wed, 12 Apr 2017 14:37:03 +0900 Subject: [PATCH] Fix typo of processmonitor There is a typo in processmonitor's log message. This patch fixed it. Change-Id: Idb2ebbdf4979db083b8d810cec58d407a4f68487 --- .../processmonitor/process_handler/handle_process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masakarimonitors/processmonitor/process_handler/handle_process.py b/masakarimonitors/processmonitor/process_handler/handle_process.py index 6dea305..6243d6f 100644 --- a/masakarimonitors/processmonitor/process_handler/handle_process.py +++ b/masakarimonitors/processmonitor/process_handler/handle_process.py @@ -166,7 +166,7 @@ class HandleProcess(object): post_cmd_str = down_process['post_restart_command'] LOG.info( - _LI("Retart of process with executing command: %s"), cmd_str) + _LI("Restart of process with executing command: %s"), cmd_str) for retries in range(0, CONF.process.restart_retries + 1):