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 .env
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ANALYTICS_URL=http://localhost:5000
NJORD_ORIGIN=http://njord-transactions-server
FREYJA_ORIGIN=http://localhost:7800
SKADI_ORIGIN=http://localhost:8080
SKADI_API_ORIGIN=http://skadi-api-server.local.svc.cluster.local
SKADI_API_ORIGIN=http://skadi-post-boost-api.local.svc.cluster.local
MIMIR_ORIGIN=http://localhost:7600

MEILI_INDEX=dev
Expand Down
2 changes: 1 addition & 1 deletion .infra/Pulumi.adhoc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ config:
defaultImageUrl: https://res.cloudinary.com/daily-now/image/upload/s--P4t4XyoV--/f_auto/v1722860399/public/Placeholder%2001,https://res.cloudinary.com/daily-now/image/upload/s--VDukGCjf--/f_auto/v1722860399/public/Placeholder%2002,https://res.cloudinary.com/daily-now/image/upload/s--HRgLpUt6--/f_auto/v1722860399/public/Placeholder%2003,https://res.cloudinary.com/daily-now/image/upload/s--foaA6JGU--/f_auto/v1722860399/public/Placeholder%2004,https://res.cloudinary.com/daily-now/image/upload/s--CxzD6vbw--/f_auto/v1722860399/public/Placeholder%2005,https://res.cloudinary.com/daily-now/image/upload/s--ZrL_HSsR--/f_auto/v1722860399/public/Placeholder%2006,https://res.cloudinary.com/daily-now/image/upload/s--1KxV4ohY--/f_auto/v1722860400/public/Placeholder%2007,https://res.cloudinary.com/daily-now/image/upload/s--0_ODbtD2--/f_auto/v1722860399/public/Placeholder%2008,https://res.cloudinary.com/daily-now/image/upload/s--qPvKM23u--/f_auto/v1722860399/public/Placeholder%2009,https://res.cloudinary.com/daily-now/image/upload/s--OHB84bZF--/f_auto/v1722860399/public/Placeholder%2010,https://res.cloudinary.com/daily-now/image/upload/s--2-1xRawN--/f_auto/v1722860399/public/Placeholder%2011,https://res.cloudinary.com/daily-now/image/upload/s--58gMhC4P--/f_auto/v1722860399/public/Placeholder%2012
digestQueueConcurrency: 1000
enablePubsub: true
skadiApiOrigin: http://skadi-api-server.local.svc.cluster.local
skadiApiOrigin: http://skadi-post-boost-api.local.svc.cluster.local
freyjaOrigin: http://freyja
gcloudProject: local
heimdallOrigin: http://heimdall-api
Expand Down
2 changes: 1 addition & 1 deletion .infra/Pulumi.prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ config:
digestQueueConcurrency: 1000
experimentationKey:
secure: AAABADH0xT7H6UeMlZG0fUEGjohQ1dvwcbIgJ3WMI5wfqScub3Qp3nvUDhska0DunbFmvj7IrtH07noRL1lCYg==
skadiApiOrigin: http://skadi-api-server.daily.svc.cluster.local
skadiApiOrigin: http://skadi-post-boost-api.daily.svc.cluster.local
freyjaOrigin: http://freyja.freyja
growthbookApiConfigClientKey:
secure: AAABAJEgS6b8xZv0j06KOawyNMdkTpGmzKs7Ryed5SofiLp3vSTjxhqQuKSVsaHjR5s=
Expand Down
8 changes: 4 additions & 4 deletions __tests__/schema/posts/boost.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1493,7 +1493,7 @@ describe('query postCampaigns', () => {

// Verify the HTTP call was made with correct parameters
expect(mockFetchParse.mock.calls[1]).toEqual([
'http://skadi-api-server.local.svc.cluster.local/promote/post/list',
'http://skadi-post-boost-api.local.svc.cluster.local/promote/post/list',
{
method: 'POST',
headers: {
Expand Down Expand Up @@ -2638,7 +2638,7 @@ describe('mutation cancelPostBoost', () => {

// Verify the skadi client was called with correct parameters
expect(mockFetchParse).toHaveBeenCalledWith(
'http://skadi-api-server.local.svc.cluster.local/promote/post/cancel',
'http://skadi-post-boost-api.local.svc.cluster.local/promote/post/cancel',
{
method: 'POST',
headers: {
Expand Down Expand Up @@ -2694,7 +2694,7 @@ describe('mutation cancelPostBoost', () => {

// Verify the skadi client was called with correct parameters
expect(mockFetchParse).toHaveBeenCalledWith(
'http://skadi-api-server.local.svc.cluster.local/promote/post/cancel',
'http://skadi-post-boost-api.local.svc.cluster.local/promote/post/cancel',
{
method: 'POST',
headers: {
Expand Down Expand Up @@ -2750,7 +2750,7 @@ describe('mutation cancelPostBoost', () => {

// Verify the skadi client was called with correct parameters
expect(mockFetchParse).toHaveBeenCalledWith(
'http://skadi-api-server.local.svc.cluster.local/promote/post/cancel',
'http://skadi-post-boost-api.local.svc.cluster.local/promote/post/cancel',
{
method: 'POST',
headers: {
Expand Down
Loading