From 79c8f626c59ca11bb8e7f460d40b09f5e0cec76d Mon Sep 17 00:00:00 2001 From: Max Bowsher Date: Wed, 4 Jan 2023 00:14:29 +0000 Subject: [PATCH] Remove `generic_mount_paths` field (#18558) PR #17926 already deleted the implementation of the `generic_mount_paths` field so it needs to be removed from the declared fields of the path too, so help and OpenAPI isn't misleading. --- vault/logical_system_paths.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/vault/logical_system_paths.go b/vault/logical_system_paths.go index 53a3c20d34..0d334652b8 100644 --- a/vault/logical_system_paths.go +++ b/vault/logical_system_paths.go @@ -956,12 +956,6 @@ func (b *SystemBackend) internalPaths() []*framework.Path { Type: framework.TypeString, Description: "Context string appended to every operationId", }, - "generic_mount_paths": { - Type: framework.TypeBool, - Description: "Use generic mount paths", - Query: true, - Default: false, - }, }, Callbacks: map[logical.Operation]framework.OperationFunc{ logical.ReadOperation: b.pathInternalOpenAPI,