You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@aurora.apache.org by "Bill Farner (JIRA)" <ji...@apache.org> on 2014/04/02 04:17:14 UTC

[jira] [Created] (AURORA-303) name field should be optional on Process objects

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)