Skip to content

Commit

Permalink
Do not let clickhouse points at secondary subdomain of beta (#5027)
Browse files Browse the repository at this point in the history
  • Loading branch information
dippindots authored Oct 22, 2024
1 parent c9f1be7 commit dcfd297
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/shared/api/cbioportalInternalClientInstance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,7 @@ function proxyColumnStore(client: any, endpoint: string) {
const old = client[method];

client[method] = function(params: any) {
const host =
getBrowserWindow().location.hostname ===
'genie-public-beta.cbioportal.org'
? 'genie-public-beta1.cbioportal.org'
: getLoadConfig().baseUrl;
const host = getLoadConfig().baseUrl;

const oldRequest = this.request;

Expand Down

0 comments on commit dcfd297

Please sign in to comment.