Skip to content

Commit

Permalink
Remove LakeFS from labels regarding the binary distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
BigRoy committed Oct 18, 2024
1 parent 03a3a11 commit de90ddf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion client/ayon_usd/addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def get_plugin_paths(self):
def _download_global_lakefs_binaries(self):
settings = get_studio_settings()
if not settings["usd"]["lakefs"].get("enabled", False):
self.log.info("USD LakeFS binary distribution is disabled.")
self.log.info("USD Binary distribution is disabled.")
return

os.makedirs(DOWNLOAD_DIR, exist_ok=True)
Expand Down
2 changes: 1 addition & 1 deletion client/ayon_usd/hooks/pre_resolver_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def execute(self):
project_settings = self.data["project_settings"]
if not project_settings["usd"]["lakefs"].get("enabled", False):
self.log.info(
"USD LakeFS binary distribution for AYON USD Resolver is"
"USD Binary distribution for AYON USD Resolver is"
" disabled.")
return

Expand Down
8 changes: 4 additions & 4 deletions server/settings/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ class AppPlatformURIModel(BaseSettingsModel):
)


class LakeFsSettings(BaseSettingsModel):
"""LakeFS binary distribution of USD and AYON USD Resolver"""
class BinaryDistributionSettings(BaseSettingsModel):
"""Binary distribution of USD and AYON USD Resolver"""

_layout = "collapsed"

Expand Down Expand Up @@ -286,8 +286,8 @@ class UsdLibConfigSettings(BaseSettingsModel):

class USDSettings(BaseSettingsModel):

lakefs: LakeFsSettings = SettingsField(
default_factory=LakeFsSettings, title="LakeFs Binary Distribution"
lakefs: BinaryDistributionSettings = SettingsField(
default_factory=BinaryDistributionSettings, title="Binary Distribution"
)

ayon_usd_resolver: AyonResolverSettings = SettingsField(
Expand Down

0 comments on commit de90ddf

Please sign in to comment.