Shell services: harmonise errors IDs

This commit is contained in:
bruno 2018-02-18 17:33:29 +01:00 committed by Benjamin Canou
parent 1171340a9f
commit f5e3d99e24

View File

@ -17,7 +17,7 @@ let () =
(* Parse error *) (* Parse error *)
register_error_kind register_error_kind
`Permanent `Permanent
~id:"prevalidation.parse_error" ~id:"node.prevalidation.parse_error"
~title:"Parsing error in prevalidation" ~title:"Parsing error in prevalidation"
~description:"Raised when an operation has not been parsed correctly during prevalidation." ~description:"Raised when an operation has not been parsed correctly during prevalidation."
~pp:(fun ppf () -> ~pp:(fun ppf () ->
@ -28,7 +28,7 @@ let () =
(* Too many operations *) (* Too many operations *)
register_error_kind register_error_kind
`Temporary `Temporary
~id:"prevalidation.too_many_operations" ~id:"node.prevalidation.too_many_operations"
~title:"Too many pending operations in prevalidation" ~title:"Too many pending operations in prevalidation"
~description:"The prevalidation context is full." ~description:"The prevalidation context is full."
~pp:(fun ppf () -> ~pp:(fun ppf () ->
@ -39,7 +39,7 @@ let () =
(* Oversized operation *) (* Oversized operation *)
register_error_kind register_error_kind
`Permanent `Permanent
~id:"prevalidation.oversized_operation" ~id:"node.prevalidation.oversized_operation"
~title:"Oversized operation" ~title:"Oversized operation"
~description:"The operation size is bigger than allowed." ~description:"The operation size is bigger than allowed."
~pp:(fun ppf (size, max) -> ~pp:(fun ppf (size, max) ->
@ -64,7 +64,7 @@ let () =
(* Unknown network *) (* Unknown network *)
register_error_kind register_error_kind
`Permanent `Permanent
~id:"state.unknown_chain" ~id:"node.state.unknown_chain"
~title:"Unknown chain" ~title:"Unknown chain"
~description:"The chain identifier could not be found in \ ~description:"The chain identifier could not be found in \
the chain identifiers table." the chain identifiers table."
@ -75,7 +75,7 @@ let () =
(fun x -> Unknown_chain x) ; (fun x -> Unknown_chain x) ;
register_error_kind register_error_kind
`Permanent `Permanent
~id:"badDataDir" ~id:"node.state.bad_data_dir"
~title:"Bad data directory" ~title:"Bad data directory"
~description:"The data directory could not be read. \ ~description:"The data directory could not be read. \
This could be because it was generated with an \ This could be because it was generated with an \
@ -89,7 +89,7 @@ let () =
(* Block not invalid *) (* Block not invalid *)
register_error_kind register_error_kind
`Permanent `Permanent
~id:"blockNotInvalid" ~id:"node.state.block_not_invalid"
~title:"Block not invalid" ~title:"Block not invalid"
~description:"The invalid block to be unmarked was not actually invalid." ~description:"The invalid block to be unmarked was not actually invalid."
~pp:(fun ppf block -> ~pp:(fun ppf block ->
@ -107,7 +107,7 @@ let () =
(* Inconsistent hash *) (* Inconsistent hash *)
register_error_kind register_error_kind
`Permanent `Permanent
~id:"inconsistentContextHash" ~id:"node.state.block.inconsistent_context_hash"
~title:"Inconsistent commit hash" ~title:"Inconsistent commit hash"
~description: ~description:
"When commiting the context of a block, the announced context \ "When commiting the context of a block, the announced context \
@ -131,7 +131,7 @@ let () =
(* Invalid locator *) (* Invalid locator *)
register_error_kind register_error_kind
`Permanent `Permanent
~id:"invalidLocator" ~id:"node.bootstrap_pipeline.invalid_locator"
~title:"Invalid block locator" ~title:"Invalid block locator"
~description:"Block locator is invalid." ~description:"Block locator is invalid."
~pp: (fun ppf (id, locator) -> ~pp: (fun ppf (id, locator) ->
@ -181,7 +181,7 @@ let () =
(* Invalid protocol *) (* Invalid protocol *)
register_error_kind register_error_kind
`Permanent `Permanent
~id:"validator.invalid_protocol" ~id:"node.protocol_validator.invalid_protocol"
~title:"Invalid protocol" ~title:"Invalid protocol"
~description:"Invalid protocol." ~description:"Invalid protocol."
~pp:begin fun ppf (protocol, error) -> ~pp:begin fun ppf (protocol, error) ->