Skip to content

Commit

Permalink
feat: Only point to LINDAS prod
Browse files Browse the repository at this point in the history
  • Loading branch information
bprusinowski committed Dec 14, 2023
1 parent 96eb273 commit 0bf24a8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion k6/performance-tests/graphql/DataCubeComponents.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const cubeLabel = __ENV.CUBE_LABEL;
const variables = {
locale: "en",
sourceType: "sparql",
sourceUrl: `https://${env === "prod" ? "" : `${env}.`}lindas.admin.ch/query`,
sourceUrl: "https://lindas.admin.ch/query",
cubeFilter: {
iri: cubeIri,
},
Expand Down
2 changes: 1 addition & 1 deletion k6/performance-tests/graphql/DataCubeMetadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const cubeLabel = __ENV.CUBE_LABEL;
const variables = {
locale: "en",
sourceType: "sparql",
sourceUrl: `https://${env === "prod" ? "" : `${env}.`}lindas.admin.ch/query`,
sourceUrl: "https://lindas.admin.ch/query",
cubeFilter: {
iri: cubeIri,
},
Expand Down
2 changes: 1 addition & 1 deletion k6/performance-tests/graphql/DataCubePreview.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const cubeLabel = __ENV.CUBE_LABEL;
const variables = {
iri: cubeIri,
sourceType: "sparql",
sourceUrl: `https://${env === "prod" ? "" : `${env}.`}lindas.admin.ch/query`,
sourceUrl: "https://lindas.admin.ch/query",
locale: "en",
latest: false,
};
Expand Down

0 comments on commit 0bf24a8

Please sign in to comment.