We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to Reproduce:
"rest-client.certificates": { "test1.azurewebsites.net": { "pfx": "./Certificates/ABC.pfx", "passphrase": "F1234" } }
Reslut:
Certificate path ./Certificates/ABC.pfx of pfx doesn't exist, please make sure it exists.
Possible bug in httpClient.ts file (debugged values added to the code):
httpClient.ts
... // the path should be relative path let rootPath = getWorkspaceRootPath(); //Debug: "file:///c%3A/var/tmp/bla-api-test/" let absolutePath = ''; if (rootPath) { absolutePath = path.join(rootPath, absoluteOrRelativePath); //Debug: "file:\c%3A\var\tmp\bla-api-test\ABC.pax" if (fs.existsSync(absolutePath)) { //Debug: false return absolutePath; } else { window.showWarningMessage(`Certificate path ${absoluteOrRelativePath} of ${certName} doesn't exist, please make sure it exists.`); return; } } ...
showWarningMessage will be called
The text was updated successfully, but these errors were encountered:
Fix file path issue when using workspace #190
be48f93
@redcoreit nice catch, guy, I have fixed it and will publish this fix in next release. Sorry for the inconvenience.
Sorry, something went wrong.
@redcoreit you can verify this fix in latest version 0.18.2, thanks in advance.
Perfect, thank you! Keep up the good work, awesome extension!
No branches or pull requests
Steps to Reproduce:
Reslut:
Possible bug in
httpClient.ts
file (debugged values added to the code):showWarningMessage will be called
The text was updated successfully, but these errors were encountered: