OP-3698 - added profile to Webpublisher settings for timeouts

Currently applicable only to PS
This commit is contained in:
Petr Kalis 2022-08-04 15:35:09 +02:00
parent 4bca280d25
commit bfa906eb62
2 changed files with 41 additions and 0 deletions

View file

@ -1,4 +1,13 @@
{
"timeout_profiles": [
{
"hosts": [
"photoshop"
],
"task_types": [],
"timeout": 600
}
],
"publish": {
"CollectPublishedFiles": {
"task_type_to_family": {

View file

@ -5,6 +5,38 @@
"label": "Web Publisher",
"is_file": true,
"children": [
{
"type": "list",
"collapsible": true,
"use_label_wrap": true,
"key": "timeout_profiles",
"label": "Timeout profiles",
"object_type": {
"type": "dict",
"children": [
{
"key": "hosts",
"label": "Host names",
"type": "hosts-enum",
"multiselection": true
},
{
"key": "task_types",
"label": "Task types",
"type": "task-types-enum",
"multiselection": true
},
{
"type": "separator"
},
{
"type": "number",
"key": "timeout",
"label": "Timeout (sec)"
}
]
}
},
{
"type": "dict",
"collapsible": true,