This commit is contained in:
revital 2025-06-24 09:27:41 +03:00
parent f9d7f28d39
commit 8b36298a75
2 changed files with 4 additions and 3 deletions

View File

@ -142,8 +142,8 @@ DAEMON_ARGS = dict({
},
'--use-owner-token': {
'help': 'Run tasks under the identity of each task\'s owner: all calls made by the task code during execution '
'will use the owner\'s credentials instead of the agent\'s. This feature is available under the ClearML '
'Enterprise plan.',
'will use the owner\'s credentials instead of the agent\'s. This feature requires the agent to use a '
'ClearML Enterprise Server.',
'action': 'store_true',
}
}, **WORKER_ARGS)

View File

@ -87,7 +87,8 @@ def parse_args():
action="store_true",
default=False,
help="Run tasks under the identity of each task's owner: all calls made by the task code during execution will "
"use the owner's credentials instead of the agent's. This feature is available under the ClearML Enterprise plan.",
"use the owner's credentials instead of the agent's. This features requires the agent to use a ClearML "
"Enterprise Server.",
)
parser.add_argument(
"--create-queue",