summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-04-28 08:15:19 -0700
committerGitHub <noreply@github.com>2020-04-28 08:15:19 -0700
commit63cdbb25a05ebcdce72680bcbf73d172291cc30e (patch)
tree4ec25f958d021648c8f2fa927d82fca010629a0b
parent2148b7d794bead62ed919bd580c3291532f70a47 (diff)
downloadchef-63cdbb25a05ebcdce72680bcbf73d172291cc30e.tar.gz
Update RELEASE_NOTES.md
Signed-off-by: Tim Smith <tsmith@chef.io> Co-Authored-By: mjingle <mjinglewski@chef.io>
-rw-r--r--RELEASE_NOTES.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 56ca4aaa41..0df2501b7c 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -443,7 +443,7 @@ which('my_app', extra_path: '/opt/my_app/bin')
### 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 and allows you to control if and when a cookbook library is loaded. Depending on the construction of your libraries, this new option 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