diff --git a/builtin/logical/pki/path_fetch_issuers.go b/builtin/logical/pki/path_fetch_issuers.go index e0970e020..5c7f84191 100644 --- a/builtin/logical/pki/path_fetch_issuers.go +++ b/builtin/logical/pki/path_fetch_issuers.go @@ -283,7 +283,7 @@ to be set on all PR secondary clusters.`, }, "ocsp_servers": { Type: framework.TypeStringSlice, - Description: `OSCP Servers`, + Description: `OCSP Servers`, Required: false, }, "enable_aia_url_templating": { diff --git a/ui/app/models/pki/config/urls.js b/ui/app/models/pki/config/urls.js index d2b1aa277..bb6f2af6b 100644 --- a/ui/app/models/pki/config/urls.js +++ b/ui/app/models/pki/config/urls.js @@ -35,7 +35,7 @@ export default class PkiConfigUrlsModel extends Model { crlDistributionPoints; @attr({ - label: 'OSCP Servers', + label: 'OCSP Servers', subText: 'Specifies the URL values for the OCSP Servers field.', showHelpText: false, editType: 'stringArray', diff --git a/ui/tests/integration/components/pki/page/pki-configuration-details-test.js b/ui/tests/integration/components/pki/page/pki-configuration-details-test.js index 0e0b1b490..1a8a0c849 100644 --- a/ui/tests/integration/components/pki/page/pki-configuration-details-test.js +++ b/ui/tests/integration/components/pki/page/pki-configuration-details-test.js @@ -122,7 +122,7 @@ module('Integration | Component | Page::PkiConfigurationDetails', function (hook .hasText('15m', 'it renders delta build duration'); assert .dom(SELECTORS.rowValue('Responder APIs')) - .hasText('Enabled', 'responder apis value renders Enabled if oscp_disable=false'); + .hasText('Enabled', 'responder apis value renders Enabled if ocsp_disable=false'); assert.dom(SELECTORS.rowValue('Interval')).hasText('77h', 'interval value renders'); // check falsy aut_rebuild and _enable_delta hides duration values this.crl.autoRebuild = false;