Skip to content

Commit

Permalink
feat(backend): set test sites
Browse files Browse the repository at this point in the history
  • Loading branch information
MatsJohansen87 committed Sep 7, 2024
1 parent 21eab67 commit b739e56
Showing 1 changed file with 29 additions and 21 deletions.
50 changes: 29 additions & 21 deletions src/services/backends/backend.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,32 +33,40 @@ export const requestBackend = (ast: AstTopLayer, updateResponse: (response: Map<
backendUrl = "http://localhost:8055";
}

// const backend = new Spot(new URL(backendUrl), [
// "aachen",
// "berlin",
// "brno",
// "brno-recetox",
// "cyprus",
// "dresden",
// "frankfurt",
// "goettingen",
// "hannover",
// "heidelberg",
// "luebeck",
// "mannheim",
// "marburg",
// "muenchen-hmgu",
// "olomouc",
// "pilsen",
// "prague-ffm",
// "prague-ior",
// "regensburg",
// "rome",
// "wuerzburg",
// ]);

const backend = new Spot(new URL(backendUrl), [
"aachen",
"berlin",
"brno",
"brno-recetox",
"cyprus",
"dresden",
"frankfurt",
"goettingen",
"hannover",
"heidelberg",
"luebeck",
"mannheim",
"marburg",
"muenchen-hmgu",
"olomouc",
"pilsen",
"prague-ffm",
"prague-ior",
"regensburg",
"rome",
"wuerzburg",
"uppsala-test",
"eric-test",
"prague-uhkt-test",
]);





backend.send(
btoa(decodeURI(JSON.stringify(query))),
updateResponse,
Expand Down

0 comments on commit b739e56

Please sign in to comment.