summaryrefslogtreecommitdiff
path: root/RELEASE_NOTES.md
diff options
context:
space:
mode:
authorClaire McQuin <claire@getchef.com>2014-09-30 12:14:23 -0700
committerClaire McQuin <claire@getchef.com>2014-10-01 14:31:06 -0700
commite2cedf758f3c78ac8badb336d5021144bcd7b469 (patch)
treeb98e247e53c211d3bd0e4553395befc03f8d0bc3 /RELEASE_NOTES.md
parentea430b7ef437e004afb8826adad36c60588f4ddc (diff)
downloadchef-e2cedf758f3c78ac8badb336d5021144bcd7b469.tar.gz
Fix wording, add updates for interval sleep first, signal processing
Diffstat (limited to 'RELEASE_NOTES.md')
-rw-r--r--RELEASE_NOTES.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index e9ce2d93a1..4909414b95 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -274,5 +274,9 @@ or `-f` option and a comma-separated string representation of the filter hash.
## Unforked chef-client interval runs are disabled.
We no longer allow unforked interval runs of `chef-client`. CLI arguments with flag combinations `--interval SEC --no-fork` or
-`--daemonize --no-fork` will fail immediately. You can supply the `--once` flag so that chef-client will execute once
-in the current process and exit.
+`--daemonize --no-fork` will fail immediately. Configuration options `interval` and `daemonize` will also fail with
+error when `client_fork false` is set.
+
+## Interval sleep occurs before converge
+When running chef-client or chef-solo at intervals, the application will perform splay and interval sleep
+before converging chef. (In previous releases, splay sleep occurred first, then convergance, then interval sleep).