Skip to content

Commit

Permalink
use coordinator url v2
Browse files Browse the repository at this point in the history
  • Loading branch information
Omar Rida authored and Omar Rida committed Mar 20, 2024
1 parent 9a529e5 commit 28fada5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion generators/openapi/src/generatorLoggingWrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ export class GeneratorLoggingWrapper {

constructor(generatorConfig: FernGeneratorExec.GeneratorConfig) {
if (generatorConfig.environment.type === "remote") {
// eslint-disable-next-line no-console
console.log("generatorConfig.environment.coordinatorUrlV2", generatorConfig.environment.coordinatorUrlV2);
const generatorLoggingClient = new FernGeneratorExecClient({
environment: generatorConfig.environment.coordinatorUrl
environment: generatorConfig.environment.coordinatorUrlV2
});
const taskId = generatorConfig.environment.id;
this.maybeSendUpdates = async (updates) => {
Expand Down

0 comments on commit 28fada5

Please sign in to comment.