Refactor profile hosts -> host_names

This commit is contained in:
Roy Nieterau 2025-11-27 14:38:35 +01:00
parent 1a5a6e4ad0
commit 877a9fdecd
2 changed files with 2 additions and 2 deletions

View file

@ -272,7 +272,7 @@ class ExtractOIIOPostProcess(publish.Extractor):
repre_name: str = repre["name"]
repre_ext: str = repre["ext"]
filtering_criteria = {
"hosts": host_name,
"host_names": host_name,
"product_types": product_type,
"product_names": product_name,
"task_names": task_name,

View file

@ -638,7 +638,7 @@ class ExtractOIIOPostProcessProfileModel(BaseSettingsModel):
default_factory=list,
title="Product types"
)
hosts: list[str] = SettingsField(
host_names: list[str] = SettingsField(
default_factory=list,
title="Host names"
)