Skip to content

Commit

Permalink
Updated documentation to make mention of memcached caveats
Browse files Browse the repository at this point in the history
Signed-off-by: Dhruv Govil <[email protected]>
  • Loading branch information
dgovil committed Nov 16, 2023
1 parent 2313693 commit 7698459
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/rez/rezconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,9 +500,15 @@
allow_unversioned_packages = True

# Defines whether a resolve should immediately fail if any variants have a required package that can't be found.
# It is enabled by default.
# This can be useful to disable if you have packages that aren't available to all users.
# It is enabled by default. If a variant has requires that cannot be found , it will error immediately rather than
# trying the other variants.
# If disabled, it will try other variants before giving up.
# This can be useful if you have variants that aren't available to all users.
#
# .. warning::
# Memcached isn't tested with scenarios where you expect users to have access to different sets of packages.
# It expects that every user can access the same set of packages, which may cause incorrect resolves
# when this option is disabled.
error_on_missing_variant_requires = True

###############################################################################
Expand Down

0 comments on commit 7698459

Please sign in to comment.