Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib/audit-logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const OPERATIONS = {

const AUDIT_SERVICE_ENDPOINT_ROUTE = '/audit-log-api/event-post'
const AUDIT_SERVICE_ENDPOINTS = {
stage: 'https://deploy-service.stg.app-builder.corp.adp.adobe.io',
stage: 'https://deploy-service.stg.app-builder.adp.adobe.io',
prod: 'https://deploy-service.app-builder.adp.adobe.io'
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/auth-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const { getCliEnv } = require('@adobe/aio-lib-env')
const aioLogger = require('@adobe/aio-lib-core-logging')('@adobe/aio-cli-plugin-app:auth-helper', { provider: 'debug' })

const DEPLOY_SERVICE_ENDPOINTS = {
stage: 'https://deploy-service.stg.app-builder.corp.adp.adobe.io',
stage: 'https://deploy-service.stg.app-builder.adp.adobe.io',
prod: 'https://deploy-service.app-builder.adp.adobe.io'
}

Expand Down
2 changes: 1 addition & 1 deletion test/commands/app/config/get/log-forwarding.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ test('get log forwarding settings (expect init to be passed a config)', async ()
await command.run()
// config should be deploy service settings
const modifiedConfig = structuredClone(command.appConfig.aio)
modifiedConfig.runtime.apihost = 'https://deploy-service.stg.app-builder.corp.adp.adobe.io/runtime' // aio-lib-env is mocked to return 'stage'
modifiedConfig.runtime.apihost = 'https://deploy-service.stg.app-builder.adp.adobe.io/runtime' // aio-lib-env is mocked to return 'stage'
modifiedConfig.runtime.auth_handler = {
getAuthHeader: expect.any(Function)
}
Expand Down
2 changes: 1 addition & 1 deletion test/commands/lib/auth-helper.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ describe('bearerAuthHandler', () => {
describe('setRuntimeApiHostAndAuthHandler', () => {
const DEPLOY_SERVICE_ENDPOINTS = {
prod: 'https://deploy-service.app-builder.adp.adobe.io',
stage: 'https://deploy-service.stg.app-builder.corp.adp.adobe.io'
stage: 'https://deploy-service.stg.app-builder.adp.adobe.io'
}

beforeEach(() => {
Expand Down