You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
neuro status and any other command which takes a job URI does not work with a job ran in organization.
$ neuro status job:job-3cfa7099-2cda-42ca-9afb-9b2582b4b2d6
ERROR: Illegal argument(s) ({0: DataError('value should be None'), 1: DataError('String is longer than 40 characters')})
$ neuro status job://default/test-org/serhiystorchaka/job-3cfa7099-2cda-42ca-9afb-9b2582b4b2d6
ERROR: Illegal argument(s) ({0: DataError('value should be None'), 1: DataError('String is longer than 40 characters')})
$ neuro status job:test-job2
ERROR: Illegal argument(s) ({0: DataError('value should be None'), 1: DataError('does not match pattern \\A[a-z](?:-?[a-z0-9])*\\Z')})
$ neuro status job://default/test-org/serhiystorchaka/test-job2
ERROR: Illegal argument(s) ({0: DataError('value should be None'), 1: DataError('does not match pattern \\A[a-z](?:-?[a-z0-9])*\\Z')})
It is because the full URI job://{cluster}/{org}/{user}/{jobid} is parsed as cluster={cluster}, owner={org} and name={user}/{jobid}.
The text was updated successfully, but these errors were encountered:
neuro status
and any other command which takes a job URI does not work with a job ran in organization.It is because the full URI
job://{cluster}/{org}/{user}/{jobid}
is parsed ascluster={cluster}
,owner={org}
andname={user}/{jobid}
.The text was updated successfully, but these errors were encountered: