fix: log agent runner best-effort failures

This commit is contained in:
huanghuoguoguo
2026-05-17 10:49:27 +08:00
committed by huanghuoguoguo
parent 0cdecbbf36
commit d419ee4139
3 changed files with 15 additions and 11 deletions

View File

@@ -243,7 +243,11 @@ class TestRegistryMetadataForPipeline:
# extracted config at top level.
assert len(stages) == 1
assert stages[0]['name'] == 'plugin:alice/my-agent/custom'
assert stages[0]['config'] == [{'name': 'param1', 'type': 'string'}]
assert stages[0]['config'] == [{
'name': 'param1',
'type': 'string',
'id': 'plugin:alice/my-agent/custom.param1',
}]
class TestDescriptorValidation: