Skip to content

Commit

Permalink
Merge branch 'main' into interpretations-query
Browse files Browse the repository at this point in the history
  • Loading branch information
rcantin-w authored Feb 11, 2025
2 parents e3810f7 + 4f5f966 commit 19ef52f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
env:
LIVE_PIPELINE: '2025-01-20'
LIVE_PIPELINE: '2025-02-06'
steps:
- label: 'autoformat'
command: '.buildkite/scripts/autoformat.sh'
Expand Down
2 changes: 1 addition & 1 deletion api/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion api/scripts/holiday_closure_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
});

Expand Down
2 changes: 1 addition & 1 deletion pipeline/src/local.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const windowEvent: WindowEvent = {
};

getElasticClient({
pipelineDate: '2025-01-20',
pipelineDate: '2025-02-06',
serviceName: 'pipeline',
hostEndpointAccess: 'public',
}).then(elasticClient => {
Expand Down
2 changes: 1 addition & 1 deletion unpublisher/src/local.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 => {
Expand Down

0 comments on commit 19ef52f

Please sign in to comment.