Skip to content

Commit

Permalink
add functionality to turn json string inside the node overrides to js…
Browse files Browse the repository at this point in the history
…on notation

Signed-off-by: instamenta <[email protected]>
  • Loading branch information
instamenta committed Jan 29, 2025
1 parent 0dccc4d commit d4511e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/network_overrides_model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ export class NetworkOverridesModel {
gossipData.endpointOverrides = this.endpointOverrides.map(d => JSON.stringify(d));
}

return yaml.stringify({gossip: gossipData});
return yaml.stringify({gossip: gossipData}).replaceAll(/'/g, '');
}
}

0 comments on commit d4511e6

Please sign in to comment.