Skip to content
Snippets Groups Projects
Commit d4e297b8 authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

doc/rapi.rst: Add ECODE_TEMP_NORES


The assertion was failing as ECODE_TEMP_NORES was not documented.

Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent e2dd6ece
No related branches found
No related tags found
Loading
...@@ -1501,7 +1501,7 @@ classification: ...@@ -1501,7 +1501,7 @@ classification:
errors.ECODE_ALL == set([errors.ECODE_RESOLVER, errors.ECODE_NORES, errors.ECODE_ALL == set([errors.ECODE_RESOLVER, errors.ECODE_NORES,
errors.ECODE_INVAL, errors.ECODE_STATE, errors.ECODE_NOENT, errors.ECODE_INVAL, errors.ECODE_STATE, errors.ECODE_NOENT,
errors.ECODE_EXISTS, errors.ECODE_NOTUNIQUE, errors.ECODE_FAULT, errors.ECODE_EXISTS, errors.ECODE_NOTUNIQUE, errors.ECODE_FAULT,
errors.ECODE_ENVIRON]) errors.ECODE_ENVIRON, errors.ECODE_TEMP_NORES])
:pyeval:`errors.ECODE_RESOLVER` :pyeval:`errors.ECODE_RESOLVER`
Resolver errors. This usually means that a name doesn't exist in DNS, Resolver errors. This usually means that a name doesn't exist in DNS,
...@@ -1513,6 +1513,10 @@ classification: ...@@ -1513,6 +1513,10 @@ classification:
etc.). If the resources on the cluster increase, the operation might etc.). If the resources on the cluster increase, the operation might
succeed. succeed.
:pyeval:`errors.ECODE_TEMP_NORES`
Simliar to :pyeval:`errors.ECODE_NORES`, but indicating the operation
should be attempted again after some time.
:pyeval:`errors.ECODE_INVAL` :pyeval:`errors.ECODE_INVAL`
Wrong arguments (at syntax level). The operation will not ever be Wrong arguments (at syntax level). The operation will not ever be
accepted unless the arguments change. accepted unless the arguments change.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment