diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 9909ad2..2a2647b 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -1,5 +1,5 @@ env: - LIVE_PIPELINE: '2025-01-20' + LIVE_PIPELINE: '2025-02-06' steps: - label: 'autoformat' command: '.buildkite/scripts/autoformat.sh' diff --git a/api/config.ts b/api/config.ts index 826a30d..920c1e9 100644 --- a/api/config.ts +++ b/api/config.ts @@ -12,7 +12,7 @@ const environment = environmentSchema.parse(process.env); // This configuration is exposed via the public healthcheck endpoint, // so be careful not to expose any secrets here. const config = { - pipelineDate: '2025-01-20', + pipelineDate: '2025-02-06', addressablesIndex: 'addressables', articlesIndex: 'articles', eventsIndex: 'events', diff --git a/api/scripts/holiday_closure_test.ts b/api/scripts/holiday_closure_test.ts index fb51c85..12337fc 100644 --- a/api/scripts/holiday_closure_test.ts +++ b/api/scripts/holiday_closure_test.ts @@ -69,7 +69,7 @@ const applyItemsApiDeepstoreLogic = ( const run = async () => { const elasticClient = await getElasticClient({ serviceName: 'api', - pipelineDate: '2025-01-20', + pipelineDate: '2025-02-06', hostEndpointAccess: 'public', }); diff --git a/pipeline/src/local.ts b/pipeline/src/local.ts index dbfd473..b6cfd48 100644 --- a/pipeline/src/local.ts +++ b/pipeline/src/local.ts @@ -23,7 +23,7 @@ const windowEvent: WindowEvent = { }; getElasticClient({ - pipelineDate: '2025-01-20', + pipelineDate: '2025-02-06', serviceName: 'pipeline', hostEndpointAccess: 'public', }).then(elasticClient => { diff --git a/unpublisher/src/local.ts b/unpublisher/src/local.ts index 06bf95b..7872cd2 100644 --- a/unpublisher/src/local.ts +++ b/unpublisher/src/local.ts @@ -10,7 +10,7 @@ import { createHandler } from './handler'; const [_1, _2, ...deletionIds] = argv; getElasticClient({ - pipelineDate: '2025-01-20', + pipelineDate: '2025-02-06', serviceName: 'unpublisher', hostEndpointAccess: 'public', }).then(async elasticClient => {