Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitin Sreeram committed Jun 18, 2024
1 parent caaacf2 commit 5284b86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .tests/environments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import axios from 'axios';
const API_KEY = process.env.CSAE_CLEARSCAPE_API_KEY;
const url = 'https://api.clearscape.teradata.com/environments';
const CSAE_ENV_PASSWORD = process.env.CSAE_ENV_PASSWORD || 'asdfasdf';

const ENV_PREFIX = process.env.GITHUB_RUN_ID || 'env';
export class Environments {
public readonly envName: string;
public readonly region: string;
Expand Down Expand Up @@ -85,7 +85,7 @@ export class EnvPool {
private envPool: Environments[]=[];
constructor(private maxEnv: number) {
for (let i = 0; i < maxEnv; i++) {
this.envPool.push(new Environments(`env${i}`, 'us-central', CSAE_ENV_PASSWORD));
this.envPool.push(new Environments(`jupyter-demos-${ENV_PREFIX}-${i}`, 'us-central', CSAE_ENV_PASSWORD));
}
}

Expand Down

0 comments on commit 5284b86

Please sign in to comment.