Bill Farner created AURORA-303:
----------------------------------
Summary: name field should be optional on Process objects
Key: AURORA-303
URL: https://issues.apache.org/jira/browse/AURORA-303
Project: Aurora
Issue Type: Task
Components: Client
Reporter: Bill Farner
Priority: Minor
{{Process}} objects currently require a {{name}} to be included:
{code}
hello_world = Process(
name = 'hello_world',
cmdline = 'python hello_world.py')
{code}
It should be reasonable to have {{name}} be optional, for a more concise
Process definition:
{code}
hello_world = Process(cmdline = 'python hello_world.py')
{code}
However, this results in an error:
{noformat}
Error: Cannot coerce '<class 'pystachio.composite.Empty'>' to String
{noformat}
--
This message was sent by Atlassian JIRA
(v6.2#6252)