Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DEPLOY 2025-02-25 2 #2227

Merged
merged 2 commits into from
Feb 25, 2025
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
17 changes: 6 additions & 11 deletions azion/production/azion.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,6 @@
"name": "Route GraphQL City Queries to Cities Origin",
"phase": "request"
},
{
"id": 269759,
"name": "Route GraphQL Billing Queries to Manager Origin",
"phase": "request"
},
{
"id": 269763,
"name": "Secure Headers",
Expand All @@ -142,11 +137,6 @@
"name": "Route API Identity Providers",
"phase": "request"
},
{
"id": 318350,
"name": "Route GraphQL Accounting Queries to Manager Origin",
"phase": "request"
},
{
"id": 368275,
"name": "Rewrite azrt Cookie in azion.com",
Expand Down Expand Up @@ -176,6 +166,11 @@
"id": 368280,
"name": "Rewrite azat Cookie in azionedge.net",
"phase": "response"
},
{
"id": 372222,
"name": "API Version 4 Routing",
"phase": "request"
}
]
},
Expand All @@ -189,4 +184,4 @@
"name": "Cities - Cache"
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export const getTotalRecords = async ({ filter, dataset }) => {
const decorator = new AxiosHttpClientSignalDecorator()

const httpResponse = await decorator.request({
baseURL: '/',
url: makeRealTimeEventsBaseUrl(),
method: 'POST',
body: payload
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ describe('getTotalRecords', () => {
url: 'v4/events/graphql',
method: 'POST',
signal: undefined,
baseURL: '/',
body: {
query,
variables: {
Expand Down
Loading