From 697bd6021799f4fefbc5fdd2f7d9d1da53e1171c Mon Sep 17 00:00:00 2001 From: Patrick Hogan Date: Sat, 7 Feb 2015 23:33:20 -0800 Subject: [PATCH] Update one incorrect type and one deprecated value watch parameter per documentation is a boolean. Source code shows it to be as well. The value was a string "truee" instances parameter per deprecation warnings explains to use 0 instead of max. --- examples/process.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/process.json b/examples/process.json index 93ccf588..71323e64 100644 --- a/examples/process.json +++ b/examples/process.json @@ -2,7 +2,7 @@ "apps" : [{ "exec_interpreter" : "node", "exec_mode" : "cluster_mode", - "instances" : "max", + "instances" : 0, "log_date_format" : "YYYY-MM-DD HH:mm Z", "max_memory_restart" : "160", "merge_logs" : true, @@ -11,6 +11,6 @@ "cwd" : "examples", "node_args" : "--harmony", "ignoreWatch" : ["[\\/\\\\]\\./", "log"], - "watch" : "truee" + "watch" : true }] }