summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-04-21 10:54:17 -0700
committerTim Smith <tsmith84@gmail.com>2020-04-27 15:56:47 -0700
commitaf3ac66cf55e2fbf9c5b345888bb86cae0212fc3 (patch)
treea593f6caf2ff7ae9dbe01cd30c04e2c7306661c6
parent66212ec267b1fe576e8462c8fceac092e7811c17 (diff)
downloadchef-af3ac66cf55e2fbf9c5b345888bb86cae0212fc3.tar.gz
Update RELEASE_NOTES.md
Signed-off-by: Tim Smith <tsmith@chef.io> Co-Authored-By: Ian Maddaus <IanMadd@users.noreply.github.com>
-rw-r--r--RELEASE_NOTES.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 545d3d4524..8efcedb7d2 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -279,7 +279,7 @@ TODO document why this new helpers matter
### eager_load_libraries metadata.rb setting
-By default Chef Infra Client eagerly loads all ruby files in each cookbook's libraries directory at runtime. A new metadata.rb option `eager_load_libraries` has been introduced to allow you to control that behavior so that you can control if and when a cookbook library is loaded. Depending on how your libraries are constructed this may greatly improve the runtime performance of your cookbook. With eager loading disabled you may manually load libraries included in your cookbook using Ruby's standard `require` method. Metadata.rb configuration options:
+By default Chef Infra Client eagerly loads all ruby files in each cookbook's libraries directory at runtime. A new metadata.rb option `eager_load_libraries` has been introduced to allow you to control that behavior so that you can control if and when a cookbook library is loaded. Depending on how your libraries are constructed, this may greatly improve the runtime performance of your cookbook. With eager loading disabled, you may manually load libraries included in your cookbook using Ruby's standard `require` method. Metadata.rb configuration options:
```ruby
eager_load_libraries false # disable eager loading all libraries