From c866f5e3394a1fa5799668a3d4734378cc9f1c3a Mon Sep 17 00:00:00 2001 From: brycegbrazen Date: Tue, 19 Mar 2024 12:40:25 -0500 Subject: [PATCH] Readd package_repository setting lost via copy paste Signed-off-by: brycegbrazen --- src/rezplugins/package_repository/rezconfig.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/rezplugins/package_repository/rezconfig.py b/src/rezplugins/package_repository/rezconfig.py index f037ee92a..4dba835fb 100644 --- a/src/rezplugins/package_repository/rezconfig.py +++ b/src/rezplugins/package_repository/rezconfig.py @@ -1,4 +1,10 @@ filesystem = { + # The mechanism used to create the lockfile. If set to 'default', this will + # use hardlinks if the 'os.link' method is present, otherwise mkdir is used. + # It can also be explicitly set to use only 'hardlink', or only 'mkdir'. + # Valid options are 'default', 'mkdir', or 'hardlink' + "file_lock_type": "default", + # The timeout to use when creating file locks. This is done when a variant is # installed into an existing package, to prevent multiple file writes at # once (which could result in a variant install getting lost). The timeout