|
Post by nschellenberger on Apr 30, 2023 18:56:50 GMT
Minor error in the Fabric MessageProperty key for CableOK which has an extraneous trailing space character. Not a problem for most folks, but a generic reader trying to apply the DynamicPropertyPattern annotation will fail to match and therefore won't apply the Type clause.
diff -au ./schema/registries/Fabric.1.0.0.json ./cmd/mreg/registries/Fabric.1.0.0.json --- ./schema/registries/Fabric.1.0.0.json 2023-04-26 15:40:13.438415230 -0400 +++ ./cmd/mreg/registries/Fabric.1.0.0.json 2023-04-26 15:40:11.766398193 -0400 @@ -636,7 +636,7 @@ ], "Resolution": "Contact the network administrator for problem resolution." }, - "CableOK ": { + "CableOK": { "Description": "Indicates that a cable has returned to working condition.", "LongDescription": "This message shall be used to indicate that a cable has been restored to working condition.", "Message": "The cable in switch '%1' port '%2' has returned to working condition.",
(I realise this is stupidly nitpicky but it did actually cause our tooling to skip this message because it concluded it was just a random dynamic property on the OpenType as opposed to specifically a MessageRegistry.v1_0_0.Message....)
|
|
|
Post by mraineri on May 1, 2023 12:37:34 GMT
While not a problem for humans, registries are intended to be equally consumed by software. This definitely needs a correction.
|
|