Skip to content

Commit

Permalink
fix: remove toString() as return type changed to string now
Browse files Browse the repository at this point in the history
  • Loading branch information
Paras committed Jan 16, 2025
1 parent 1291164 commit bce11f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/aws-lsp-codewhisperer/src/language-server/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export const makeProxyConfig = (workspace: Workspace) => {
if (proxyUrl) {
const certs = isNodeJS
? process.env.AWS_CA_BUNDLE
? [workspace.fs.readFileSync(process.env.AWS_CA_BUNDLE).toString()]
? [workspace.fs.readFileSync(process.env.AWS_CA_BUNDLE)]
: undefined
: undefined
const agent = new HttpsProxyAgent({
Expand Down

0 comments on commit bce11f5

Please sign in to comment.