From: Hannes Reinecke Date: Wed, 21 Feb 2024 14:33:14 +0000 (+0100) Subject: config-schema.json.in: tls keys and keyrings are strings X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=b00955d696e81fe14571a25f461ee4c97a42127c;p=users%2Fsagi%2Flibnvme.git config-schema.json.in: tls keys and keyrings are strings TLS keys and keyrings are stored as strings, not as integers. Signed-off-by: Hannes Reinecke --- diff --git a/doc/config-schema.json.in b/doc/config-schema.json.in index 6d9e36a4..cb0769f0 100644 --- a/doc/config-schema.json.in +++ b/doc/config-schema.json.in @@ -98,6 +98,14 @@ "description": "Controller DH-HMAC-CHAP key", "type": "string" }, + "keyring": { + "description": "Keyring for TLS key lookup", + "type": "string" + }, + "tls_key": { + "description": "TLS key for the connection", + "type": "string" + }, "nr_io_queues": { "description": "Number of I/O queues", "type": "integer" @@ -156,14 +164,6 @@ "type": "boolean", "default": false }, - "keyring": { - "description": "Keyring for TLS key lookup", - "type": "integer" - }, - "tls_key": { - "description": "TLS key for the connection", - "type": "integer" - }, "tls": { "description": "Enable TLS encryption", "type": "boolean",