getSchedulerWebAddress()

in src/app/services/envconfig/envconfig.service.ts [59:65]


  getSchedulerWebAddress() {
    if (!environment.production) {
      return this.envConfig.localSchedulerWebAddress;
    }

    return `${this.uiProtocol}//${this.uiHostname}:${this.uiPort}`;
  }